about summary refs log tree commit diff
path: root/pkgs/development/python2-modules
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-12-09 08:25:34 -0800
committerRobert Schütz <nix@dotlambda.de>2022-12-09 08:37:41 -0800
commitc2b5367847e7680e7312adc9a4b427fb67e1a9d9 (patch)
tree74b5482610a3cef012d276c092f7f76109fd78a5 /pkgs/development/python2-modules
parent3817fec3e2105a6820e8efd3847c8aa8e870e606 (diff)
downloadnixlib-c2b5367847e7680e7312adc9a4b427fb67e1a9d9.tar
nixlib-c2b5367847e7680e7312adc9a4b427fb67e1a9d9.tar.gz
nixlib-c2b5367847e7680e7312adc9a4b427fb67e1a9d9.tar.bz2
nixlib-c2b5367847e7680e7312adc9a4b427fb67e1a9d9.tar.lz
nixlib-c2b5367847e7680e7312adc9a4b427fb67e1a9d9.tar.xz
nixlib-c2b5367847e7680e7312adc9a4b427fb67e1a9d9.tar.zst
nixlib-c2b5367847e7680e7312adc9a4b427fb67e1a9d9.zip
python2Packages.google-apputils: remove
Diffstat (limited to 'pkgs/development/python2-modules')
-rw-r--r--pkgs/development/python2-modules/google-apputils/default.nix41
1 files changed, 0 insertions, 41 deletions
diff --git a/pkgs/development/python2-modules/google-apputils/default.nix b/pkgs/development/python2-modules/google-apputils/default.nix
deleted file mode 100644
index 225adf348d1a..000000000000
--- a/pkgs/development/python2-modules/google-apputils/default.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, isPy3k
-, pytz
-, gflags
-, python-dateutil
-, mox
-, python
-}:
-
-buildPythonPackage rec {
-  pname = "google-apputils";
-  version = "0.4.2";
-  disabled = isPy3k;
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "0afw0gxmh0yw5g7xsmw49gs8bbp0zyhbh6fr1b0h48f3a439v5a7";
-  };
-
-  preConfigure = ''
-    sed -i '/ez_setup/d' setup.py
-  '';
-
-  propagatedBuildInputs = [ pytz gflags python-dateutil mox ];
-
-  checkPhase = ''
-    ${python.executable} setup.py google_test
-  '';
-
-  # ERROR:root:Trying to access flag test_tmpdir before flags were parsed.
-  doCheck = false;
-
-  meta = with lib; {
-    description = "Google Application Utilities for Python";
-    homepage = "https://github.com/google/google-apputils";
-    license = licenses.asl20;
-    maintainers = with maintainers; [ SuperSandro2000 ];
-  };
-}