pythonPackages.ofxhome: 0.3.1 -> 0.3.3

This commit is contained in:
Tom Saeger
2017-10-09 21:23:05 -05:00
parent 66f8512e4f
commit 66fd7d2baa
2 changed files with 24 additions and 18 deletions

View 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;
};
}