summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pip/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pip/default.nix')
-rw-r--r--pkgs/development/python-modules/pip/default.nix43
1 files changed, 26 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/pip/default.nix b/pkgs/development/python-modules/pip/default.nix
index 72b7eb88df72..18b7ff1cacf8 100644
--- a/pkgs/development/python-modules/pip/default.nix
+++ b/pkgs/development/python-modules/pip/default.nix
@@ -1,20 +1,21 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, installShellFiles
-, mock
-, scripttest
-, setuptools
-, virtualenv
-, wheel
-, pretend
-, pytest
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ installShellFiles,
+ mock,
+ scripttest,
+ setuptools,
+ virtualenv,
+ wheel,
+ pretend,
+ pytest,
-# docs
-, sphinx
+ # docs
+ sphinx,
-# coupled downsteam dependencies
-, pip-tools
+ # coupled downsteam dependencies
+ pip-tools,
}:
buildPythonPackage rec {
@@ -71,7 +72,13 @@ buildPythonPackage rec {
cd ..
'';
- nativeCheckInputs = [ mock scripttest virtualenv pretend pytest ];
+ nativeCheckInputs = [
+ mock
+ scripttest
+ virtualenv
+ pretend
+ pytest
+ ];
# Pip wants pytest, but tests are not distributed
doCheck = false;
@@ -85,7 +92,9 @@ buildPythonPackage rec {
--zsh <($out/bin/pip completion --zsh --no-cache-dir)
'';
- passthru.tests = { inherit pip-tools; };
+ passthru.tests = {
+ inherit pip-tools;
+ };
meta = {
description = "The PyPA recommended tool for installing Python packages";