pythonPackages.gunicorn: python2 no longer supported

This commit is contained in:
Jonathan Ringer 2019-12-22 11:39:53 -08:00 committed by Frederik Rietdijk
parent ba7cb82c0c
commit a2a8423fb5

View File

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi { stdenv, buildPythonPackage, fetchPypi, isPy27
, coverage , coverage
, mock , mock
, pytest , pytest
@ -9,6 +9,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "gunicorn"; pname = "gunicorn";
version = "20.0.4"; version = "20.0.4";
disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;