nixpkgs/pkgs/development/python-modules/sdds/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
670 B
Nix
Raw Normal View History

2022-05-06 21:18:52 +00:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "sdds";
2022-06-01 08:28:14 +00:00
version = "0.3.0";
2022-05-06 21:18:52 +00:00
format = "setuptools";
src = fetchFromGitHub {
owner = "pylhc";
repo = pname;
2022-06-01 08:28:14 +00:00
rev = "refs/tags/${version}";
sha256 = "sha256-l9j+YJ5VNMzL6JW59kq0hQS7XIj53UxW5bNnfdURz/o=";
2022-05-06 21:18:52 +00:00
};
propagatedBuildInputs = [ numpy ];
pythonImportsCheck = [ "sdds" ];
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Python 3 package to handle SDDS files";
homepage = "https://pylhc.github.io/sdds/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ veprbl ];
};
}