Files
nixpkgs/pkgs/development/python-modules/supervisor/default.nix
T

28 lines
746 B
Nix
Raw Normal View History

2018-05-25 21:35:25 +01:00
{ lib, buildPythonPackage, isPy3k, fetchPypi
, mock
, meld3
}:
buildPythonPackage rec {
pname = "supervisor";
2019-01-16 12:13:14 -08:00
version = "3.3.5";
2018-05-25 21:35:25 +01:00
src = fetchPypi {
inherit pname version;
2019-01-16 12:13:14 -08:00
sha256 = "1w3ahridzbc6rxfpbyx8lij6pjlcgf2ymzyg53llkjqxalp6sk8v";
2018-05-25 21:35:25 +01:00
};
2018-05-25 22:34:12 +01:00
checkInputs = [ mock ];
2018-05-25 21:35:25 +01:00
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/;
2018-05-25 22:34:12 +01:00
license = lib.licenses.free; # http://www.repoze.org/LICENSE.txt
2018-05-25 21:35:25 +01:00
maintainers = with lib.maintainers; [ zimbatm ];
};
}