Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python3Packages.argcomplete: 1.10.3 -> 1.11.1 #83413

Merged
merged 1 commit into from Mar 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 20 additions & 8 deletions pkgs/development/python-modules/argcomplete/default.nix
@@ -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 ];
};
Expand Down