python3.pkgs.pytest-pylint: fix build

This commit is contained in:
Frederik Rietdijk 2020-06-11 14:13:08 +02:00
parent 2f72c426e1
commit 6594184e1e

View file

@ -6,6 +6,7 @@
, pylint , pylint
, six , six
, pytestrunner , pytestrunner
, toml
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -18,12 +19,13 @@ buildPythonPackage rec {
sha256 = "b0c177d63f6e3f5b82fa2720a6570dd2ecff1616c26ed6d02d0cbf75fd98ddf9"; sha256 = "b0c177d63f6e3f5b82fa2720a6570dd2ecff1616c26ed6d02d0cbf75fd98ddf9";
}; };
buildInputs = [ pytestrunner ]; nativeBuildInputs = [ pytestrunner ];
propagatedBuildInputs = [ propagatedBuildInputs = [
pytest pytest
pylint pylint
six six
toml
]; ];
# tests not included with release # tests not included with release