Merge pull request #336850 from r-ryantm/auto-update/python312Packages.scikit-hep-testdata

python312Packages.scikit-hep-testdata: 0.4.46 -> 0.4.47
This commit is contained in:
Dmitry Kalinkin 2024-08-24 21:35:55 -04:00 committed by GitHub
commit 032e2d5914
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,21 +12,21 @@
buildPythonPackage rec {
pname = "scikit-hep-testdata";
version = "0.4.46";
format = "pyproject";
version = "0.4.47";
pyproject = true;
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "scikit-hep";
repo = pname;
repo = "scikit-hep-testdata";
rev = "refs/tags/v${version}";
hash = "sha256-lihStYseIthw74kMSDHYpYaLCJGIKlx4gb0VqQu8tc4=";
hash = "sha256-YCzqAe+TVNbPrHPxD/OjxkjmYCb5pZO0+l68xUJp72w=";
};
nativeBuildInputs = [ setuptools-scm ];
build-system = [ setuptools-scm ];
propagatedBuildInputs = [
dependencies = [
pyyaml
requests
] ++ lib.optionals (!pythonAtLeast "3.9") [ importlib-resources ];