diff options
| author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2022-07-25 15:32:51 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-25 15:32:51 -0400 |
| commit | f0fa012b649a47e408291e96a15672a4fe925d65 (patch) | |
| tree | 17c6244b70b8ad9894c0c69fb2fce0cd5bea7b27 | |
| parent | Merge pull request #178598 from NixOS/backport-174014-to-release-22.05 (diff) | |
| download | nixpkgs-f0fa012b649a47e408291e96a15672a4fe925d65.tar.gz | |
python3Packages.uproot: fix runtime "No module named 'pkg_resources'" (#182830)
(cherry picked from commit 4385533655172b8a542f86167839a44a16c87ff0)
Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
| -rw-r--r-- | pkgs/development/python-modules/uproot/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/uproot/default.nix b/pkgs/development/python-modules/uproot/default.nix index 8bf8e67b8e46..dbf236f9e08e 100644 --- a/pkgs/development/python-modules/uproot/default.nix +++ b/pkgs/development/python-modules/uproot/default.nix @@ -4,6 +4,7 @@ , awkward , numpy , lz4 +, setuptools , xxhash , zstandard , pytestCheckHook @@ -26,6 +27,7 @@ buildPythonPackage rec { awkward numpy lz4 + setuptools xxhash zstandard ]; @@ -53,7 +55,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "uproot" ]; meta = with lib; { - homepage = "https://github.com/scikit-hep/uproot4"; + homepage = "https://github.com/scikit-hep/uproot5"; description = "ROOT I/O in pure Python and Numpy"; license = licenses.bsd3; maintainers = with maintainers; [ veprbl ]; |
