summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-05-27 20:08:07 +0200
committerGitHub <noreply@github.com>2018-05-27 20:08:07 +0200
commit3b5fd4dada65e9eaf92de6a507fc08f0ce49cd7c (patch)
treecca4f2dca7d4f745d4890849d311f7d7c89ea3eb /pkgs/top-level
parent6bde47d651643c18fa5295504daacfa6f7d84ec4 (diff)
parente264c341242583afc18236cae1f050a7a8e152eb (diff)
downloadnixlib-3b5fd4dada65e9eaf92de6a507fc08f0ce49cd7c.tar
nixlib-3b5fd4dada65e9eaf92de6a507fc08f0ce49cd7c.tar.gz
nixlib-3b5fd4dada65e9eaf92de6a507fc08f0ce49cd7c.tar.bz2
nixlib-3b5fd4dada65e9eaf92de6a507fc08f0ce49cd7c.tar.lz
nixlib-3b5fd4dada65e9eaf92de6a507fc08f0ce49cd7c.tar.xz
nixlib-3b5fd4dada65e9eaf92de6a507fc08f0ce49cd7c.tar.zst
nixlib-3b5fd4dada65e9eaf92de6a507fc08f0ce49cd7c.zip
Merge pull request #41085 from zimbatm/supervisor-3.3.4
python2Packages.supervisor: 3.1.4 -> 3.3.4
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix22
1 files changed, 1 insertions, 21 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index d558b1b28eb7..cfa9537e5301 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -13423,27 +13423,7 @@ in {
     };
   };
 
-  supervisor = buildPythonPackage rec {
-    name = "supervisor-3.1.4";
-
-    disabled = isPy3k;
-
-    src = pkgs.fetchurl {
-      url = "mirror://pypi/s/supervisor/${name}.tar.gz";
-      sha256 = "0kk0sv7780m4dzmrcb2m284krz907jh8jp7khz5a79qryy4m1xw2";
-    };
-
-    buildInputs = with self; [ mock ];
-    propagatedBuildInputs = with self; [ meld3 ];
-
-    # failing tests when building under chroot as root user doesn't exist
-    doCheck = false;
-
-    meta = {
-      description = "A system for controlling process state under UNIX";
-      homepage = http://supervisord.org/;
-    };
-  };
+  supervisor = callPackage ../development/python-modules/supervisor {};
 
   subprocess32 = callPackage ../development/python-modules/subprocess32 { };