My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/ofxclient/default.nix

28 lines
687 B

{ lib, buildPythonPackage, fetchPypi,
ofxhome, ofxparse, beautifulsoup4, lxml, keyring
}:
buildPythonPackage rec {
version = "2.0.3";
pname = "ofxclient";
src = fetchPypi {
inherit pname version;
sha256 = "0jdhqsbl34yn3n0x6mwsnl58c25v5lp6vr910c2hk7l74l5y7538";
};
patchPhase = ''
substituteInPlace setup.py --replace '"argparse",' ""
'';
# ImportError: No module named tests
doCheck = false;
propagatedBuildInputs = [ ofxhome ofxparse beautifulsoup4 lxml keyring ];
meta = with lib; {
homepage = "https://github.com/captin411/ofxclient";
description = "OFX client for dowloading transactions from banks";
license = licenses.mit;
};
}