summary refs log tree commit diff
path: root/pkgs/development/python-modules/ofxhome/default.nix
blob: 72ca65ed17116a8fe6254b4501d0d39dd999c628 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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;
  };
}