Gaetan Lepage
2024-12-02 16:48:48 +01:00
parent 23a7a7d8b4
commit 4feb3eeff3
@@ -1,27 +1,28 @@
{
lib,
fetchFromGitHub,
pythonAtLeast,
buildPythonPackage,
importlib-resources,
fetchFromGitHub,
# build-system
setuptools-scm,
# dependencies
pyyaml,
requests,
setuptools-scm,
pythonOlder,
pythonAtLeast,
importlib-resources,
}:
buildPythonPackage rec {
pname = "scikit-hep-testdata";
version = "0.4.48";
version = "0.5.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "scikit-hep";
repo = "scikit-hep-testdata";
rev = "refs/tags/v${version}";
hash = "sha256-B0YmO48aGDRsQ56+q7/Z6xquCNjbAQ55fkY6auvwB90=";
hash = "sha256-FIv3yC5Q3H1RXl0n32YH1UqaZiMuWHNcMPTSKLN+IkA=";
};
build-system = [ setuptools-scm ];
@@ -37,11 +38,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "skhep_testdata" ];
meta = with lib; {
meta = {
homepage = "https://github.com/scikit-hep/scikit-hep-testdata";
description = "Common package to provide example files (e.g., ROOT) for testing and developing packages against";
changelog = "https://github.com/scikit-hep/scikit-hep-testdata/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ veprbl ];
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ veprbl ];
};
}