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