python3Packages.gunicorn: add missing dependency
The package wouldn't fail itself but others depending on it would: https://hydra.nixos.org/build/229774404/nixlog/4/tail
This commit is contained in:
parent
fa3ea76bdc
commit
923a94aba4
2 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, packaging
|
||||
, pythonOlder
|
||||
, eventlet
|
||||
, gevent
|
||||
|
@ -28,6 +29,7 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [
|
||||
setuptools
|
||||
packaging
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
|
|
|
@ -21,7 +21,6 @@ buildPythonPackage rec {
|
|||
mailman
|
||||
requests
|
||||
zope_interface
|
||||
packaging
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
|
|
Loading…
Reference in a new issue