Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python312Packages.scikit-hep-testdata: 0.4.48 -> 0.5.0

Diff: https://github.com/scikit-hep/scikit-hep-testdata/compare/refs/tags/v0.4.48...v0.5.0

Changelog: https://github.com/scikit-hep/scikit-hep-testdata/releases/tag/v0.5.0

+13 -12
+13 -12
pkgs/development/python-modules/scikit-hep-testdata/default.nix
··· 1 1 { 2 2 lib, 3 + buildPythonPackage, 3 4 fetchFromGitHub, 5 + 6 + # build-system 7 + setuptools-scm, 8 + 9 + # dependencies 10 + pyyaml, 11 + requests, 4 12 pythonAtLeast, 5 - buildPythonPackage, 6 13 importlib-resources, 7 - pyyaml, 8 - requests, 9 - setuptools-scm, 10 - pythonOlder, 11 14 }: 12 15 13 16 buildPythonPackage rec { 14 17 pname = "scikit-hep-testdata"; 15 - version = "0.4.48"; 18 + version = "0.5.0"; 16 19 pyproject = true; 17 - 18 - disabled = pythonOlder "3.8"; 19 20 20 21 src = fetchFromGitHub { 21 22 owner = "scikit-hep"; 22 23 repo = "scikit-hep-testdata"; 23 24 rev = "refs/tags/v${version}"; 24 - hash = "sha256-B0YmO48aGDRsQ56+q7/Z6xquCNjbAQ55fkY6auvwB90="; 25 + hash = "sha256-FIv3yC5Q3H1RXl0n32YH1UqaZiMuWHNcMPTSKLN+IkA="; 25 26 }; 26 27 27 28 build-system = [ setuptools-scm ]; ··· 37 38 38 39 pythonImportsCheck = [ "skhep_testdata" ]; 39 40 40 - meta = with lib; { 41 + meta = { 41 42 homepage = "https://github.com/scikit-hep/scikit-hep-testdata"; 42 43 description = "Common package to provide example files (e.g., ROOT) for testing and developing packages against"; 43 44 changelog = "https://github.com/scikit-hep/scikit-hep-testdata/releases/tag/v${version}"; 44 - license = licenses.bsd3; 45 - maintainers = with maintainers; [ veprbl ]; 45 + license = lib.licenses.bsd3; 46 + maintainers = with lib.maintainers; [ veprbl ]; 46 47 }; 47 48 }