blob: 8f589f10728b2e72c6c4f6441b7a7517a79c6ab5 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
flit-core,
pytestCheckHook,
inform,
parametrize-from-file,
setuptools,
voluptuous,
quantiphy-eval,
rkm-codes,
}:
buildPythonPackage rec {
pname = "quantiphy";
version = "2.21";
pyproject = true;
src = fetchFromGitHub {
owner = "KenKundert";
repo = "quantiphy";
tag = "v${version}";
hash = "sha256-TQMSktRW0xjihrDxOqHa2AB0HgbNOn4debHV6/Z76bI=";
};
nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = [
quantiphy-eval
rkm-codes
];
nativeCheckInputs = [
inform
parametrize-from-file
pytestCheckHook
setuptools
voluptuous
];
pythonImportsCheck = [ "quantiphy" ];
meta = {
description = "Module for physical quantities (numbers with units)";
homepage = "https://quantiphy.readthedocs.io";
changelog = "https://github.com/KenKundert/quantiphy/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jpetrucciani ];
};
}
|