summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/uproot-methods/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/uproot-methods/default.nix')
-rw-r--r--pkgs/development/python-modules/uproot-methods/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/development/python-modules/uproot-methods/default.nix b/pkgs/development/python-modules/uproot-methods/default.nix
deleted file mode 100644
index 3c268ed7ed4f..000000000000
--- a/pkgs/development/python-modules/uproot-methods/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-, numpy
-, awkward
-}:
-
-buildPythonPackage rec {
- version = "0.9.1";
- pname = "uproot-methods";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "accb4392c59a1485ce3ee6d78a6fd163731ade8b9b5208e7bde8fa1767aef097";
- };
-
- propagatedBuildInputs = [ numpy awkward ];
-
- # No tests on PyPi
- doCheck = false;
-
- meta = with stdenv.lib; {
- homepage = "https://github.com/scikit-hep/uproot-methods";
- description = "Pythonic mix-ins for ROOT classes";
- license = licenses.bsd3;
- maintainers = [ maintainers.costrouc ];
- };
-}