blob: ea30c65cad476d664d4bff6ef8cd81afd7cdac20 (
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
52
53
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
matplotlib,
numpy,
numpydoc,
pytest,
scipy,
pythonOlder,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "allantools";
version = "2024.06";
pyproject = true;
src = fetchFromGitHub {
owner = "aewallin";
repo = "allantools";
tag = version;
hash = "sha256-dF19aSpIioOm0BnwrLkMe/DtfgWSKFnX4c/Xs1O2Quw=";
};
build-system = [
hatchling
];
dependencies = [
matplotlib
numpy
numpydoc
pytest
scipy
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"allantools"
];
meta = {
description = "Allan deviation and related time & frequency statistics library in Python";
homepage = "https://github.com/aewallin/allantools";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ kiranshila ];
};
}
|