12 buildPythonPackage rec {
13 pname = "scikit-hep-testdata";
17 disabled = pythonOlder "3.6";
19 src = fetchFromGitHub {
22 rev = "refs/tags/v${version}";
23 hash = "sha256-7a1F7180mnbMiEwRWzDQt2EhRsleSoVhWtTc+5DR/2o=";
30 propagatedBuildInputs = [
33 ] ++ lib.optionals (!pythonAtLeast "3.9") [
37 SKHEP_DATA = 1; # install the actual root files
39 doCheck = false; # tests require networking
41 pythonImportsCheck = [
46 homepage = "https://github.com/scikit-hep/scikit-hep-testdata";
47 description = "A common package to provide example files (e.g., ROOT) for testing and developing packages against";
48 changelog = "https://github.com/scikit-hep/scikit-hep-testdata/releases/tag/v${version}";
49 license = licenses.bsd3;
50 maintainers = with maintainers; [ veprbl ];