Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / ofxclient / default.nix
blob72e2be7c78bd8a988ef6dd2e0f9339a22118629e
1 { lib, buildPythonPackage, fetchPypi,
2  ofxhome, ofxparse, beautifulsoup4, lxml, keyring
3 }:
5 buildPythonPackage rec {
6   version = "2.0.3";
7   pname = "ofxclient";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "0jdhqsbl34yn3n0x6mwsnl58c25v5lp6vr910c2hk7l74l5y7538";
12   };
14   patchPhase = ''
15     substituteInPlace setup.py --replace '"argparse",' ""
16   '';
18   # ImportError: No module named tests
19   doCheck = false;
21   propagatedBuildInputs = [ ofxhome ofxparse beautifulsoup4 lxml keyring ];
23   meta = with lib; {
24     homepage = "https://github.com/captin411/ofxclient";
25     description = "OFX client for dowloading transactions from banks";
26     license = licenses.mit;
27   };