Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4e7364abab54
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7eed92a7ac22
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 2, 2019

  1. pythonPackage.cli-helpers: disable python2 tests

    Jonathan Ringer committed Oct 2, 2019
    Copy the full SHA
    7eed92a View commit details
Showing with 8 additions and 8 deletions.
  1. +8 −8 pkgs/development/python-modules/cli-helpers/default.nix
16 changes: 8 additions & 8 deletions pkgs/development/python-modules/cli-helpers/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
{ lib
, buildPythonPackage
, fetchPypi
{ lib, buildPythonPackage, fetchPypi, isPy27
, backports_csv
, configobj
, terminaltables
, mock
, pytest
, tabulate
, backports_csv
, terminaltables
, wcwidth
, pytest
, mock
, isPy27
}:

buildPythonPackage rec {
@@ -27,6 +24,9 @@ buildPythonPackage rec {
wcwidth
] ++ (lib.optionals isPy27 [ backports_csv ]);

# namespace collision between backport.csv and backports.configparser
doCheck = !isPy27;

checkInputs = [ pytest mock ];

checkPhase = ''