-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
/
default.nix
65 lines (53 loc) · 1.22 KB
/
default.nix
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
54
55
56
57
58
59
60
61
62
63
64
65
{
lib,
buildPythonPackage,
fetchPypi,
# build-system
scikit-build-core,
cmake,
pathspec,
ninja,
pyproject-metadata,
setuptools-scm,
# dependencies
numpy,
# tests
pytestCheckHook,
pyyaml,
}:
buildPythonPackage rec {
pname = "spglib";
version = "2.5.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-+LtjiJe+kbnb1MCF2f3h9pBI9ZSeIPODLLlDjldBjUs=";
};
nativeBuildInputs = [
scikit-build-core
cmake
pathspec
ninja
pyproject-metadata
setuptools-scm
];
dontUseCmakeConfigure = true;
postPatch = ''
# relax v2 constrain in [build-system] intended for binary backward compat
substituteInPlace pyproject.toml \
--replace-fail "numpy~=2.0" "numpy"
'';
propagatedBuildInputs = [ numpy ];
nativeCheckInputs = [
pytestCheckHook
pyyaml
];
pythonImportsCheck = [ "spglib" ];
meta = with lib; {
description = "Python bindings for C library for finding and handling crystal symmetries";
homepage = "https://spglib.github.io/spglib/";
changelog = "https://github.com/spglib/spglib/raw/v${version}/ChangeLog";
license = licenses.bsd3;
maintainers = with maintainers; [ psyanticy ];
};
}