blob: e0bdb75a6365b04fc2e0d2ba32daddcf3cb07273 (
about) (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
h5py,
hdf5plugin,
numpy,
pytestCheckHook,
pythonOlder,
scipy,
setuptools-scm,
setuptools,
}:
buildPythonPackage rec {
pname = "nexusformat";
version = "1.0.8";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
hash = "sha256-zsIOnWgMbUaJl3tHnpQiF3+Qy48dwKDAvFlg6z8hW/M=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
h5py
hdf5plugin
numpy
scipy
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "nexusformat.nexus" ];
meta = with lib; {
description = "Python API to open, create, and manipulate NeXus data written in the HDF5 format";
homepage = "https://github.com/nexpy/nexusformat";
changelog = "https://github.com/nexpy/nexusformat/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ oberth-effect ];
};
}
|