mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
29 lines
695 B
Nix
29 lines
695 B
Nix
{ stdenv, 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 stdenv.lib; {
|
|
homepage = https://github.com/captin411/ofxclient;
|
|
description = "OFX client for dowloading transactions from banks";
|
|
license = licenses.mit;
|
|
};
|
|
}
|