mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
27 lines
677 B
Nix
27 lines
677 B
Nix
|
{ lib, buildPythonPackage, isPy3k, fetchPypi
|
||
|
, mock
|
||
|
, meld3
|
||
|
}:
|
||
|
buildPythonPackage rec {
|
||
|
pname = "supervisor";
|
||
|
version = "3.3.4";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "0wp62z9xprvz2krg02xnbwcnq6pxfq3byd8cxx8c2d8xznih28i1";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ mock ];
|
||
|
|
||
|
propagatedBuildInputs = [ meld3 ];
|
||
|
|
||
|
# Supervisor requires Python 2.4 or later but does not work on any version of Python 3. You are using version 3.6.5 (default, Mar 28 2018, 10:24:30)
|
||
|
disabled = isPy3k;
|
||
|
|
||
|
meta = {
|
||
|
description = "A system for controlling process state under UNIX";
|
||
|
homepage = http://supervisord.org/;
|
||
|
maintainers = with lib.maintainers; [ zimbatm ];
|
||
|
};
|
||
|
}
|