python3Packages.mortgage: init at 1.0.5
This commit is contained in:
parent
9f405103ed
commit
6b889a6e52
30
pkgs/development/python-modules/mortgage/default.nix
Normal file
30
pkgs/development/python-modules/mortgage/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -941,6 +941,8 @@ in {
|
|||||||
|
|
||||||
python-mpv-jsonipc = callPackage ../development/python-modules/python-mpv-jsonipc { };
|
python-mpv-jsonipc = callPackage ../development/python-modules/python-mpv-jsonipc { };
|
||||||
|
|
||||||
|
mortgage = callPackage ../development/python-modules/mortgage { };
|
||||||
|
|
||||||
msal = callPackage ../development/python-modules/msal { };
|
msal = callPackage ../development/python-modules/msal { };
|
||||||
|
|
||||||
msal-extensions = callPackage ../development/python-modules/msal-extensions { };
|
msal-extensions = callPackage ../development/python-modules/msal-extensions { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user