ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / mortgage / default.nix
blobdc395a87a560a54f84f4005cf763318e271504ea
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "mortgage";
10   version = "1.0.5";
12   src = fetchPypi {
13     inherit version pname;
14     sha256 = "18fcb356c631e9cc27fa7019f6ff6021707e34b9ce3a3b7dc815661288709921";
15   };
17   checkInputs = [
18     pytestCheckHook
19   ];
21   doCheck = false; # No tests in sdist
23   disabled = pythonOlder "3.5";
25   meta = {
26     description = "Mortgage calculator";
27     license = lib.licenses.mit;
28   };