about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTimo Kaufmann <eisfreak7@gmail.com>2018-04-25 01:23:44 +0200
committerJörg Thalheim <Mic92@users.noreply.github.com>2018-04-25 00:23:44 +0100
commitb75b5cdc792970957cf828a95a5340b5f414a6f4 (patch)
tree6a94bdc9db94fba3f865419884a81cdef41e2eb0
parenta8fc951404f20a9da4b2e94cd966e282f69977a6 (diff)
downloadnixlib-b75b5cdc792970957cf828a95a5340b5f414a6f4.tar
nixlib-b75b5cdc792970957cf828a95a5340b5f414a6f4.tar.gz
nixlib-b75b5cdc792970957cf828a95a5340b5f414a6f4.tar.bz2
nixlib-b75b5cdc792970957cf828a95a5340b5f414a6f4.tar.lz
nixlib-b75b5cdc792970957cf828a95a5340b5f414a6f4.tar.xz
nixlib-b75b5cdc792970957cf828a95a5340b5f414a6f4.tar.zst
nixlib-b75b5cdc792970957cf828a95a5340b5f414a6f4.zip
pythonPackages.entrypoints: Fix buildInputs (#39449)
-rw-r--r--pkgs/development/python-modules/entrypoints/default.nix6
1 files 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
+}