about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/mortgage/default.nix
blob: ebe5b55b1dbad5fd6d3855b6fa244fd826f96cd7 (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
31
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:

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

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

  nativeCheckInputs = [
    pytestCheckHook
  ];

  doCheck = false; # No tests in sdist

  disabled = pythonOlder "3.5";

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

}