about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ipdbplugin/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/ipdbplugin/default.nix')
-rw-r--r--pkgs/development/python-modules/ipdbplugin/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/development/python-modules/ipdbplugin/default.nix b/pkgs/development/python-modules/ipdbplugin/default.nix
deleted file mode 100644
index 1dd69b112f56..000000000000
--- a/pkgs/development/python-modules/ipdbplugin/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, nose
-, ipython
-}:
-
-buildPythonPackage rec {
-  pname = "ipdbplugin";
-  version = "1.5.0";
-  format = "setuptools";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "cdcd6bc1e995c3c2c4971ed95f207e680aa44980b716fa43fb675ff2dcc7894f";
-  };
-
-  propagatedBuildInputs = [ nose ipython ];
-
-  meta = with lib; {
-    homepage = "https://github.com/flavioamieiro/nose-ipdb/tree/master";
-    description = "Nose plugin to use iPdb instead of Pdb when tests fail";
-    license = licenses.lgpl2;
-    maintainers = [ ];
-  };
-
-}