3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.argcomplete: 1.10.3 -> 1.11.1

This commit is contained in:
Jonathan Ringer 2020-03-26 02:26:15 -07:00
parent 461784ffe4
commit 41e1594f46

View file

@ -1,25 +1,37 @@
{ buildPythonPackage, fetchPypi, lib,
dicttoxml, pexpect, prettytable, requests_toolbelt
{ buildPythonPackage, fetchPypi, lib
, dicttoxml
, importlib-metadata
, pexpect
, prettytable
, requests_toolbelt
}:
buildPythonPackage rec {
pname = "argcomplete";
version = "1.10.3";
version = "1.11.1";
src = fetchPypi {
inherit pname version;
sha256 = "a37f522cf3b6a34abddfedb61c4546f60023b3799b22d1cd971eacdc0861530a";
sha256 = "0h1przxffrhqvi46k40pzjsvdrq4zc3sl1pc96kkigqppq0vdrss";
};
doCheck = false; # bash-completion test fails with "compgen: command not found".
doCheck = false; # meant to be ran with interactive interpreter
# re-enable if we are able to make testing work
# buildInputs = [ coverage flake8 ];
# checkInputs = [ bashInteractive coverage flake8 ];
propagatedBuildInputs = [ dicttoxml pexpect prettytable requests_toolbelt ];
propagatedBuildInputs = [
dicttoxml
importlib-metadata
pexpect
prettytable
requests_toolbelt
];
pythonImportsCheck = [ "argcomplete" ];
meta = with lib; {
description = "Bash tab completion for argparse";
homepage = https://argcomplete.readthedocs.io;
homepage = "https://kislyuk.github.io/argcomplete/";
maintainers = [ maintainers.womfoo ];
license = [ licenses.asl20 ];
};