blob: 019039a3ec1fc201472864e339235d9513b93739 (
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
|
{
lib,
setuptools,
cython,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pytest-cov-stub,
pytest-xdist,
}:
buildPythonPackage rec {
pname = "runstats";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "grantjenks";
repo = "python-runstats";
tag = "v${version}";
hash = "sha256-YF6S5w/ccWM08nl9inWGbaLKJ8/ivW6c7A9Ny20fldU=";
};
build-system = [
setuptools
cython
];
nativeCheckInputs = [
pytest-cov-stub
pytest-xdist
pytestCheckHook
];
pythonImportsCheck = [ "runstats" ];
meta = {
description = "Python module for computing statistics and regression in a single pass";
homepage = "https://github.com/grantjenks/python-runstats";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ osbm ];
};
}
|