depot/third_party/nixpkgs/pkgs/development/python-modules/mortgage/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

30 lines
493 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "mortgage";
version = "1.0.5";
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;
};
}