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, { buildPythonPackage, fetchPypi, lib
dicttoxml, pexpect, prettytable, requests_toolbelt , dicttoxml
, importlib-metadata
, pexpect
, prettytable
, requests_toolbelt
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "argcomplete"; pname = "argcomplete";
version = "1.10.3"; version = "1.11.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; 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 # 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; { meta = with lib; {
description = "Bash tab completion for argparse"; description = "Bash tab completion for argparse";
homepage = https://argcomplete.readthedocs.io; homepage = "https://kislyuk.github.io/argcomplete/";
maintainers = [ maintainers.womfoo ]; maintainers = [ maintainers.womfoo ];
license = [ licenses.asl20 ]; license = [ licenses.asl20 ];
}; };