about summary refs log tree commit diff
path: root/pkgs/development/python-modules/supervisor/default.nix
blob: e7bbb57cedcc3e825251a7ce508376b68deb3716 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, buildPythonPackage, isPy3k, fetchPypi
, mock
, meld3
, setuptools
}:

buildPythonPackage rec {
  pname = "supervisor";
  version = "4.0.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "02pindhq84hb9a7ykyaqw8i2iqb21h69lpmclyqh7fm1446rji4n";
  };

  checkInputs = [ mock ];

  propagatedBuildInputs = [ meld3 setuptools ];

  meta = with lib; {
    description = "A system for controlling process state under UNIX";
    homepage = http://supervisord.org/;
    license = licenses.free; # http://www.repoze.org/LICENSE.txt
    maintainers = with maintainers; [ zimbatm ];
  };
}