about summary refs log tree commit diff
path: root/pkgs/development/python-modules/mortgage/default.nix
blob: dc395a87a560a54f84f4005cf763318e271504ea (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
24
25
26
27
28
29
30
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:

buildPythonPackage rec {
  pname = "mortgage";
  version = "1.0.5";

  src = fetchPypi {
    inherit version pname;
    sha256 = "18fcb356c631e9cc27fa7019f6ff6021707e34b9ce3a3b7dc815661288709921";
  };

  checkInputs = [
    pytestCheckHook
  ];

  doCheck = false; # No tests in sdist

  disabled = pythonOlder "3.5";

  meta = {
    description = "Mortgage calculator";
    license = lib.licenses.mit;
  };

}