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