blob: e23cad5390dc5e74d925f8177d9c6e24e2862a48 (
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
|
{
lib,
stdenv,
buildPythonPackage,
cython,
fetchFromGitHub,
libstatgrab,
pkg-config,
setuptools,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "pystatgrab";
version = "0.7.2";
pyproject = true;
src = fetchFromGitHub {
owner = "libstatgrab";
repo = "pystatgrab";
rev = "PYSTATGRAB_${lib.replaceStrings [ "." ] [ "_" ] version}";
hash = "sha256-0FDhkIK8jy3/SFmCzrl9l4RTeIKDjO0o5UoODx6Wnfs=";
};
build-system = [ setuptools ];
nativeBuildInputs = [
cython
pkg-config
];
buildInputs = [ libstatgrab ];
nativeCheckInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "statgrab" ];
meta = {
description = "Python bindings for libstatgrab";
homepage = "https://github.com/libstatgrab/pystatgrab";
changelog = "https://github.com/libstatgrab/pystatgrab/blob/PYSTATGRAB_${
lib.replaceStrings [ "." ] [ "_" ] version
}/NEWS";
license = lib.licenses.lgpl21Only;
maintainers = with lib.maintainers; [ fab ];
};
}
|