From 6594184e1e326ffcacbb47e8c12eb8e765826365 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 11 Jun 2020 14:13:08 +0200 Subject: [PATCH] python3.pkgs.pytest-pylint: fix build --- pkgs/development/python-modules/pytest-pylint/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pytest-pylint/default.nix b/pkgs/development/python-modules/pytest-pylint/default.nix index dba087bf690..f7a9a314306 100644 --- a/pkgs/development/python-modules/pytest-pylint/default.nix +++ b/pkgs/development/python-modules/pytest-pylint/default.nix @@ -6,6 +6,7 @@ , pylint , six , pytestrunner +, toml }: buildPythonPackage rec { @@ -18,12 +19,13 @@ buildPythonPackage rec { sha256 = "b0c177d63f6e3f5b82fa2720a6570dd2ecff1616c26ed6d02d0cbf75fd98ddf9"; }; - buildInputs = [ pytestrunner ]; + nativeBuildInputs = [ pytestrunner ]; propagatedBuildInputs = [ pytest pylint six + toml ]; # tests not included with release