python3Packages.mortgage: init at 1.0.5

This commit is contained in:
Frederik Rietdijk 2020-05-06 16:41:49 +02:00
parent 9f405103ed
commit 6b889a6e52
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "mortgage";
version = "1.0.5";
src = fetchPypi {
inherit version pname;
hash = "sha256:18fcb356c631e9cc27fa7019f6ff6021707e34b9ce3a3b7dc815661288709921";
};
checkInputs = [
pytestCheckHook
];
doCheck = false; # No tests in sdist
disabled = pythonOlder "3.5";
meta = {
description = "Mortgage calculator";
license = lib.licenses.mit;
};
}

View File

@ -941,6 +941,8 @@ in {
python-mpv-jsonipc = callPackage ../development/python-modules/python-mpv-jsonipc { };
mortgage = callPackage ../development/python-modules/mortgage { };
msal = callPackage ../development/python-modules/msal { };
msal-extensions = callPackage ../development/python-modules/msal-extensions { };