mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 10:24:15 +00:00
30 lines
725 B
Nix
30 lines
725 B
Nix
|
{ stdenv, buildPythonPackage, fetchPypi,
|
||
|
ofxhome, ofxparse, beautifulsoup, lxml, keyring
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
name = "${pname}-${version}";
|
||
|
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 beautifulsoup lxml keyring ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = https://github.com/captin411/ofxclient;
|
||
|
description = "OFX client for dowloading transactions from banks";
|
||
|
license = licenses.mit;
|
||
|
};
|
||
|
}
|