blob: d278045d1fea3f5deaf866b9fdaf9483ee0f6e3c (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
unittestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "cpufeature";
version = "0.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "robbmcleod";
repo = "cpufeature";
tag = "v${version}";
hash = "sha256-dp569Tp8E5/avQpYvhPNPgS/A+q2e/ie+7BR7h2Ip+I=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ setuptools ];
nativeCheckInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "cpufeature" ];
preCheck = ''
# Change into the test directory due to a relative resource path
cd cpufeature
'';
meta = {
description = "Python module for detection of CPU features";
homepage = "https://github.com/robbmcleod/cpufeature";
license = lib.licenses.cc0;
maintainers = with lib.maintainers; [ fab ];
platforms = [
"x86_64-linux"
"x86_64-windows"
];
};
}
|