Merge pull request #70019 from jonringer/bump-supervisor

pythonPackages.supervisor: 3.3.5 -> 4.0.4
This commit is contained in:
Jörg Thalheim 2019-09-29 15:39:36 +01:00 committed by GitHub
commit 44bb716e23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,27 +1,26 @@
{ lib, buildPythonPackage, isPy3k, fetchPypi { lib, buildPythonPackage, isPy3k, fetchPypi
, mock , mock
, meld3 , meld3
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "supervisor"; pname = "supervisor";
version = "3.3.5"; version = "4.0.4";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1w3ahridzbc6rxfpbyx8lij6pjlcgf2ymzyg53llkjqxalp6sk8v"; sha256 = "02pindhq84hb9a7ykyaqw8i2iqb21h69lpmclyqh7fm1446rji4n";
}; };
checkInputs = [ mock ]; checkInputs = [ mock ];
propagatedBuildInputs = [ meld3 ]; propagatedBuildInputs = [ meld3 setuptools ];
# 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) meta = with lib; {
disabled = isPy3k;
meta = {
description = "A system for controlling process state under UNIX"; description = "A system for controlling process state under UNIX";
homepage = http://supervisord.org/; homepage = http://supervisord.org/;
license = lib.licenses.free; # http://www.repoze.org/LICENSE.txt license = licenses.free; # http://www.repoze.org/LICENSE.txt
maintainers = with lib.maintainers; [ zimbatm ]; maintainers = with maintainers; [ zimbatm ];
}; };
} }