python310Packages.pipx: add input

This commit is contained in:
Fabian Affolter 2023-03-15 10:10:59 +01:00
parent 8624b3d255
commit 0967f9524e

View file

@ -1,14 +1,15 @@
{ lib
, argcomplete
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, hatchling
, userpath
, argcomplete
, packaging
, importlib-metadata
, packaging
, pip
, platformdirs
, pytestCheckHook
, pythonOlder
, userpath
}:
buildPythonPackage rec {
@ -30,9 +31,10 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
userpath
argcomplete
packaging
platformdirs
userpath
] ++ lib.optionals (pythonOlder "3.8") [
importlib-metadata
];