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: 132835fa4c99
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 68398d2dd50e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 16, 2021

  1. python3Packages.pipx: 0.15.6.0 -> 0.16.0.0

    Yevhen Shymotiuk committed Jan 16, 2021

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    13c4bc8 View commit details

Commits on Jan 17, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    68398d2 View commit details
Showing with 13 additions and 3 deletions.
  1. +13 −3 pkgs/development/python-modules/pipx/default.nix
16 changes: 13 additions & 3 deletions pkgs/development/python-modules/pipx/default.nix
Original file line number Diff line number Diff line change
@@ -5,12 +5,13 @@
, userpath
, argcomplete
, packaging
, importlib-metadata
, pytestCheckHook
}:

buildPythonPackage rec {
pname = "pipx";
version = "0.15.6.0";
version = "0.16.0.0";

disabled = pythonOlder "3.6";

@@ -19,10 +20,16 @@ buildPythonPackage rec {
owner = "pipxproject";
repo = pname;
rev = version;
sha256 = "1yffswayjfkmq86ygisja0mkg55pqj9pdml5nc0z05222sfnvn1a";
sha256 = "08mn7vm8iw20pg0gfn491y1jx8wcyjijps6f1hy7ipzd5ckynscn";
};

propagatedBuildInputs = [ userpath argcomplete packaging ];
propagatedBuildInputs = [
userpath
argcomplete
packaging
] ++ lib.optionals (pythonOlder "3.8") [
importlib-metadata
];

checkInputs = [ pytestCheckHook ];

@@ -31,17 +38,20 @@ buildPythonPackage rec {
'';

# disable tests, which require internet connection
pytestFlagsArray = [ "--ignore=tests/test_install_all_packages.py" ];
disabledTests = [
"install"
"inject"
"ensure_null_pythonpath"
"missing_interpreter"
"cache"
"internet"
"run"
"runpip"
"upgrade"
"suffix"
"legacy_venv"
"determination"
];

meta = with lib; {