diff options
-rw-r--r-- | maintainers/maintainer-list.nix | 6 | ||||
-rw-r--r-- | pkgs/development/python-modules/nexusformat/default.nix | 53 | ||||
-rw-r--r-- | pkgs/top-level/python-packages.nix | 2 |
3 files changed, 61 insertions, 0 deletions
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 06fedd48b151..07ca0ab81436 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -15213,6 +15213,12 @@ githubId = 61095988; name = "Brian Shu"; }; + oberth-effect = { + email = "stepan.venclik@gmail.com"; + github = "oberth-effect"; + githubId = 88210794; + name = "Štěpán Venclík"; + }; obfusk = { email = "flx@obfusk.net"; matrix = "@obfusk:matrix.org"; diff --git a/pkgs/development/python-modules/nexusformat/default.nix b/pkgs/development/python-modules/nexusformat/default.nix new file mode 100644 index 000000000000..7a9ea2e698be --- /dev/null +++ b/pkgs/development/python-modules/nexusformat/default.nix @@ -0,0 +1,53 @@ +{ + lib, + buildPythonPackage, + fetchPypi, + + # build-system + setuptools, + setuptools-scm, + + # tests + pytestCheckHook, + + # dependencies + h5py, + hdf5plugin, + numpy, + scipy, +}: + +buildPythonPackage rec { + pname = "nexusformat"; + version = "1.0.6"; + src = fetchPypi { + inherit pname version; + hash = "sha256-UxU3PA/2r/uamdysbfC0L2JinHgfkXhssHIo2hf3zlA="; + }; + + pyproject = true; + + build-system = [ + setuptools + setuptools-scm + ]; + + dependencies = [ + h5py + hdf5plugin + numpy + scipy + ]; + + pythonImportsCheck = [ "nexusformat.nexus" ]; + + nativeCheckInputs = [ pytestCheckHook ]; + + 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/${version}"; + license = licenses.bsd3; + maintainers = with maintainers; [ oberth-effect ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f7367f30d516..5b1d092c32ac 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9138,6 +9138,8 @@ self: super: with self; { nextdns = callPackage ../development/python-modules/nextdns { }; + nexusformat = callPackage ../development/python-modules/nexusformat { }; + nfcpy = callPackage ../development/python-modules/nfcpy { }; nftables = callPackage ../os-specific/linux/nftables/python.nix { |