mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 14:11:36 +00:00
pythonPackages.ofxhome: 0.3.1 -> 0.3.3
This commit is contained in:
parent
66f8512e4f
commit
66fd7d2baa
23
pkgs/development/python-modules/ofxhome/default.nix
Normal file
23
pkgs/development/python-modules/ofxhome/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchPypi, nose }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
version = "0.3.3";
|
||||||
|
pname = "ofxhome";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1rpyfqr2q9pnin47rjd4qapl8ngk1m9jx36iqckhdhr8s8gla445";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ nose ];
|
||||||
|
|
||||||
|
# ImportError: No module named tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/captin411/ofxhome";
|
||||||
|
description = "ofxhome.com financial institution lookup REST client";
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
|
@ -24793,24 +24793,7 @@ EOF
|
||||||
propagatedBuildInputs = with self; [ ofxhome ofxparse beautifulsoup keyring ];
|
propagatedBuildInputs = with self; [ ofxhome ofxparse beautifulsoup keyring ];
|
||||||
};
|
};
|
||||||
|
|
||||||
ofxhome = buildPythonPackage rec {
|
ofxhome = callPackage ../development/python-modules/ofxhome { };
|
||||||
name = "ofxhome-0.3.1";
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/o/ofxhome/${name}.tar.gz";
|
|
||||||
sha256 = "0000db437fd1a8c7c65cea5d88ce9d3b54642a1f4844dde04f860e29330ac68d";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = with self; [ nose ];
|
|
||||||
|
|
||||||
# ImportError: No module named tests
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = "https://github.com/captin411/ofxhome";
|
|
||||||
description = "ofxhome.com financial institution lookup REST client";
|
|
||||||
license = licenses.mit;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
ofxparse = buildPythonPackage rec {
|
ofxparse = buildPythonPackage rec {
|
||||||
name = "ofxparse-0.14";
|
name = "ofxparse-0.14";
|
||||||
|
|
Loading…
Reference in a new issue