python.pkgs.devpi-common: fix build

This commit is contained in:
Frederik Rietdijk 2020-06-11 11:49:12 +02:00
parent 418b67bad8
commit e8a60ee412

View file

@ -3,6 +3,7 @@
, py , py
, pytest , pytest
, pytest-flake8 , pytest-flake8
, lazy
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -14,7 +15,11 @@ buildPythonPackage rec {
sha256 = "4f1eb1bf85a5dabd4f4ecc11ad99588e01cc204989a9f424c2dbe5809c6c3745"; sha256 = "4f1eb1bf85a5dabd4f4ecc11ad99588e01cc204989a9f424c2dbe5809c6c3745";
}; };
propagatedBuildInputs = [ requests py ]; propagatedBuildInputs = [
requests
py
lazy
];
checkInputs = [ pytest pytest-flake8 ]; checkInputs = [ pytest pytest-flake8 ];
checkPhase = '' checkPhase = ''