Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / scikit-hep-testdata / default.nix
blobbe99cd22b6abde3525dc5c2e63fcd09f62f8d678
1 { lib
2 , fetchFromGitHub
3 , pythonAtLeast
4 , buildPythonPackage
5 , importlib-resources
6 , pyyaml
7 , requests
8 , setuptools-scm
9 , pythonOlder
12 buildPythonPackage rec {
13   pname = "scikit-hep-testdata";
14   version = "0.4.44";
15   format = "pyproject";
17   disabled = pythonOlder "3.6";
19   src = fetchFromGitHub {
20     owner = "scikit-hep";
21     repo = pname;
22     rev = "refs/tags/v${version}";
23     hash = "sha256-7a1F7180mnbMiEwRWzDQt2EhRsleSoVhWtTc+5DR/2o=";
24   };
26   nativeBuildInputs = [
27     setuptools-scm
28   ];
30   propagatedBuildInputs = [
31     pyyaml
32     requests
33   ] ++ lib.optionals (!pythonAtLeast "3.9") [
34     importlib-resources
35   ];
37   SKHEP_DATA = 1; # install the actual root files
39   doCheck = false; # tests require networking
41   pythonImportsCheck = [
42     "skhep_testdata"
43   ];
45   meta = with lib; {
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 ];
51   };