depot/third_party/nixpkgs/pkgs/development/python-modules/mortgage/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

31 lines
518 B
Nix

{ 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;
};
}