summary refs log tree commit diff
path: root/pkgs/development/python-modules/pip-tools
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-06-22 12:10:24 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-06-22 13:09:49 +0200
commit5b49e13f02eefd53869fb6ca981001f108b8c0cf (patch)
tree98355bba78536e50c25fcb69ce999cd9e2bc3358 /pkgs/development/python-modules/pip-tools
parent303787e6f8e0c7a38677cc5eef1120bfed286161 (diff)
downloadnixpkgs-5b49e13f02eefd53869fb6ca981001f108b8c0cf.tar
nixpkgs-5b49e13f02eefd53869fb6ca981001f108b8c0cf.tar.gz
nixpkgs-5b49e13f02eefd53869fb6ca981001f108b8c0cf.tar.bz2
nixpkgs-5b49e13f02eefd53869fb6ca981001f108b8c0cf.tar.lz
nixpkgs-5b49e13f02eefd53869fb6ca981001f108b8c0cf.tar.xz
nixpkgs-5b49e13f02eefd53869fb6ca981001f108b8c0cf.tar.zst
nixpkgs-5b49e13f02eefd53869fb6ca981001f108b8c0cf.zip
python.pkgs.pip-tools: fix build
Diffstat (limited to 'pkgs/development/python-modules/pip-tools')
-rw-r--r--pkgs/development/python-modules/pip-tools/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/pip-tools/default.nix b/pkgs/development/python-modules/pip-tools/default.nix
index 926b625f700..89b0d56a401 100644
--- a/pkgs/development/python-modules/pip-tools/default.nix
+++ b/pkgs/development/python-modules/pip-tools/default.nix
@@ -28,16 +28,12 @@ buildPythonPackage rec {
     "test_editable_package"
     "test_input_file_without_extension"
     "test_locally_available_editable_package_is_not_archived_in_cache_dir"
+    "test_no_candidates"
+    "test_no_candidates_pre"
   ];
 
   checkPhase = ''
     export HOME=$(mktemp -d) VIRTUAL_ENV=1
-    tests_without_network_access="
-      not test_realistic_complex_sub_dependencies
-      and not test_editable_package_vcs
-      and not test_generate_hashes_all_platforms
-      and not test_generate_hashes_without_interfering_with_each_other
-    "
     py.test -k "${disabledTests}"
   '';