Merge pull request #175711 from r-ryantm/auto-update/python3.10-sdds

python310Packages.sdds: 0.2.1 -> 0.3.0
This commit is contained in:
Dmitry Kalinkin 2022-06-01 10:23:40 -04:00 committed by GitHub
commit 4d522e5348
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,27 +3,37 @@
, fetchFromGitHub
, numpy
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "sdds";
version = "0.2.1";
version = "0.3.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pylhc";
repo = pname;
rev = "v${version}";
sha256 = "sha256-JcxcF0tDigZz3upzE7rPDynCH45dnLk/zpS0a2dOwRU=";
rev = "refs/tags/${version}";
hash = "sha256-l9j+YJ5VNMzL6JW59kq0hQS7XIj53UxW5bNnfdURz/o=";
};
propagatedBuildInputs = [ numpy ];
propagatedBuildInputs = [
numpy
];
pythonImportsCheck = [ "sdds" ];
checkInputs = [ pytestCheckHook ];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"sdds"
];
meta = with lib; {
description = "Python 3 package to handle SDDS files";
description = "Module to handle SDDS files";
homepage = "https://pylhc.github.io/sdds/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ veprbl ];