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/ofxhome/default.nix

22 lines
508 B

{ lib, buildPythonPackage, fetchPypi, nose }:
buildPythonPackage rec {
version = "0.3.3";
pname = "ofxhome";
src = fetchPypi {
inherit pname version;
sha256 = "1rpyfqr2q9pnin47rjd4qapl8ngk1m9jx36iqckhdhr8s8gla445";
};
buildInputs = [ nose ];
# ImportError: No module named tests
doCheck = false;
meta = with lib; {
homepage = "https://github.com/captin411/ofxhome";
description = "ofxhome.com financial institution lookup REST client";
license = licenses.mit;
};
}