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
, mock
, pytest
@ -9,6 +9,7 @@
buildPythonPackage rec {
pname = "gunicorn";
version = "20.0.4";
disabled = isPy27;
src = fetchPypi {
inherit pname version;