Revert "buildSetupcfg: Include unzip for zip sources."

Misunderstood the error I was seeing.

This reverts commit 0d3eb70133.
This commit is contained in:
Shea Levy 2018-04-14 20:12:22 -04:00
parent 0d3eb70133
commit 603a369b89
No known key found for this signature in database
GPG key ID: 5C0BD6957D86FE27
2 changed files with 3 additions and 6 deletions

View file

@ -6,7 +6,7 @@
# * application: Whether this package is a python library or an
# application which happens to be written in python.
# * doCheck: Whether to run the test suites.
{ pkgs, pythonPackages }:
pythonPackages:
{ src, info, meta ? {}, application ? false, doCheck ? true }: let
build = if application
then pythonPackages.buildPythonApplication
@ -16,9 +16,7 @@ in build {
inherit src meta doCheck;
nativeBuildInputs = [
pkgs.unzip
] ++ map (p: pythonPackages.${p}) (
nativeBuildInputs = map (p: pythonPackages.${p}) (
(info.setup_requires or []) ++
(if doCheck then (info.tests_require or []) else []));

View file

@ -67,8 +67,7 @@ let
}));
# See build-setupcfg/default.nix for documentation.
buildSetupcfg = import ../build-support/build-setupcfg
{ inherit pkgs; pythonPackages = self; };
buildSetupcfg = import ../build-support/build-setupcfg self;
graphiteVersion = "1.0.2";