blob: c57b22ead45a3caa853aa04b1aa5c8f2eb25c1aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "mortgage";
version = "1.0.5";
pyproject = true;
src = fetchFromGitHub {
owner = "jlumbroso";
repo = "mortgage";
tag = "v${version}";
hash = "sha256-UwSEKfMQqxpcF+7TF/+qD6l8gEO/qDCUklpZz1Nt/Ok=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "mortgage" ];
meta = {
description = "Mortgage calculator";
homepage = "https://github.com/jlumbroso/mortgage";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|