about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2017-09-16 11:46:11 +0200
committerGitHub <noreply@github.com>2017-09-16 11:46:11 +0200
commitf351ee7e9b1987a858608e9480052ab29703b0b8 (patch)
treeaec7f8398dc34d33ee963c11acc53e54971e5dbb /pkgs
parente8f873671f13b7e3e0ba0133fdc92e24a2a33e70 (diff)
parentfd3ddfb95b689a38592b9f55061ca0403f67e8ef (diff)
downloadnixlib-f351ee7e9b1987a858608e9480052ab29703b0b8.tar
nixlib-f351ee7e9b1987a858608e9480052ab29703b0b8.tar.gz
nixlib-f351ee7e9b1987a858608e9480052ab29703b0b8.tar.bz2
nixlib-f351ee7e9b1987a858608e9480052ab29703b0b8.tar.lz
nixlib-f351ee7e9b1987a858608e9480052ab29703b0b8.tar.xz
nixlib-f351ee7e9b1987a858608e9480052ab29703b0b8.tar.zst
nixlib-f351ee7e9b1987a858608e9480052ab29703b0b8.zip
Merge pull request #29461 from FRidh/pitz
python.pkgs.{pitz, clepy}: remove old packages
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/pitz/default.nix34
-rw-r--r--pkgs/top-level/python-packages.nix19
2 files changed, 0 insertions, 53 deletions
diff --git a/pkgs/applications/misc/pitz/default.nix b/pkgs/applications/misc/pitz/default.nix
deleted file mode 100644
index dcb36082231f..000000000000
--- a/pkgs/applications/misc/pitz/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ stdenv, fetchurl, buildPythonApplication, tempita, jinja2, pyyaml, clepy, mock
-, nose, decorator, docutils
-}:
-
-# TODO: pitz has a pitz-shell utility that depends on ipython, but it just
-# errors out and dies (it probably depends on an old ipython version):
-#
-#   from IPython.Shell import IPShellEmbed
-#   ImportError: No module named Shell
-#
-# pitz-shell is not the primary interface, so it is not critical to have it
-# working. Concider fixing pitz upstream.
-
-buildPythonApplication rec {
-  name = "pitz-1.2.4";
-  namePrefix = "";
-
-  src = fetchurl {
-    url = "mirror://pypi/p/pitz/${name}.tar.gz";
-    sha256 = "1k7f3h4acllzqy3mjqnjd4w5jskp03s79b7dx3c85vlmd7824smr";
-  };
-
-  # propagatedBuildInputs is needed for pitz to find its dependencies at
-  # runtime. If we use buildInputs it would just build, not run.
-  propagatedBuildInputs = [ tempita jinja2 pyyaml clepy mock nose decorator docutils ];
-
-  meta = with stdenv.lib; {
-    description = "Distributed bugtracker";
-    license = licenses.bsd3;
-    homepage = http://pitz.tplus1.com/;
-    platforms = platforms.linux;
-    maintainers = [ maintainers.bjornfor ];
-  };
-}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 373e8747903e..1d83f8ced1c6 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -205,8 +205,6 @@ in {
 
   ntlm-auth = callPackage ../development/python-modules/ntlm-auth { };
 
-  pitz = callPackage ../applications/misc/pitz { };
-
   plantuml = callPackage ../tools/misc/plantuml { };
 
   Pmw = callPackage ../development/python-modules/Pmw { };
@@ -2804,23 +2802,6 @@ in {
 
   cligj = callPackage ../development/python-modules/cligj { };
 
-  clepy = buildPythonPackage rec {
-    name = "clepy-0.3.20";
-
-    src = pkgs.fetchurl {
-      url = "mirror://pypi/c/clepy/${name}.tar.gz";
-      sha256 = "16vibfxms5z4ld8gbkra6dkhqm2cc3jnn0fwp7mw70nlwxnmm51c";
-    };
-
-    buildInputs = with self; [ self.mock self.nose self.decorator ];
-
-    meta = {
-      homepage = http://code.google.com/p/clepy/;
-      description = "Utilities created by the Cleveland Python users group";
-    };
-  };
-
-
   clientform = buildPythonPackage (rec {
     name = "clientform-0.2.10";
     disabled = isPy3k;