From b75b5cdc792970957cf828a95a5340b5f414a6f4 Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Wed, 25 Apr 2018 01:23:44 +0200 Subject: [PATCH] pythonPackages.entrypoints: Fix buildInputs (#39449) --- pkgs/development/python-modules/entrypoints/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/entrypoints/default.nix b/pkgs/development/python-modules/entrypoints/default.nix index c4f5410bc518..9ee0810571ad 100644 --- a/pkgs/development/python-modules/entrypoints/default.nix +++ b/pkgs/development/python-modules/entrypoints/default.nix @@ -15,9 +15,9 @@ buildPythonPackage rec { sha256 = "d2d587dde06f99545fb13a383d2cd336a8ff1f359c5839ce3a64c917d10c029f"; }; - checkInputs = [ pytest]; + checkInputs = [ pytest ]; - propagatedBuildInputs = [] ++ lib.optional (!isPy3k) [ configparser ]; + propagatedBuildInputs = lib.optional (!isPy3k) configparser; checkPhase = '' py.test tests @@ -28,4 +28,4 @@ buildPythonPackage rec { homepage = https://github.com/takluyver/entrypoints; license = lib.licenses.mit; }; -} \ No newline at end of file +}