Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #30264 from tsaeger/tsaeger/ofxclient

pythonPackages.ofxclient: 1.3.8 -> 2.0.3

authored by Frederik Rietdijk and committed by GitHub dcff3ccc 2d88c366

+30 -16
+29
pkgs/development/python-modules/ofxclient/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, 2 + ofxhome, ofxparse, beautifulsoup, lxml, keyring 3 + }: 4 + 5 + buildPythonPackage rec { 6 + name = "${pname}-${version}"; 7 + version = "2.0.3"; 8 + pname = "ofxclient"; 9 + 10 + src = fetchPypi { 11 + inherit pname version; 12 + sha256 = "0jdhqsbl34yn3n0x6mwsnl58c25v5lp6vr910c2hk7l74l5y7538"; 13 + }; 14 + 15 + patchPhase = '' 16 + substituteInPlace setup.py --replace '"argparse",' "" 17 + ''; 18 + 19 + # ImportError: No module named tests 20 + doCheck = false; 21 + 22 + propagatedBuildInputs = [ ofxhome ofxparse beautifulsoup lxml keyring ]; 23 + 24 + meta = with stdenv.lib; { 25 + homepage = https://github.com/captin411/ofxclient; 26 + description = "OFX client for dowloading transactions from banks"; 27 + license = licenses.mit; 28 + }; 29 + }
+1 -16
pkgs/top-level/python-packages.nix
··· 24682 24682 }; 24683 24683 }; 24684 24684 24685 - ofxclient = buildPythonPackage rec { 24686 - name = "ofxclient-1.3.8"; 24687 - src = pkgs.fetchurl { 24688 - url = "mirror://pypi/o/ofxclient/${name}.tar.gz"; 24689 - sha256 = "99ab03bffdb30d9ec98724898f428f8e73129483417d5892799a0f0d2249f233"; 24690 - }; 24691 - 24692 - patchPhase = '' 24693 - substituteInPlace setup.py --replace '"argparse",' "" 24694 - ''; 24695 - 24696 - # ImportError: No module named tests 24697 - doCheck = false; 24698 - 24699 - propagatedBuildInputs = with self; [ ofxhome ofxparse beautifulsoup keyring ]; 24700 - }; 24685 + ofxclient = callPackage ../development/python-modules/ofxclient {}; 24701 24686 24702 24687 ofxhome = buildPythonPackage rec { 24703 24688 name = "ofxhome-0.3.1";