3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #166285 from jonringer/test-click

This commit is contained in:
Sandro 2022-03-29 20:19:35 +02:00 committed by GitHub
commit 9aff924015
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,14 @@
, importlib-metadata
, locale
, pytestCheckHook
# large-rebuild downstream dependencies
, flask
, black
# applications
, magic-wormhole
, mitmproxy
}:
buildPythonPackage rec {
@ -29,6 +37,10 @@ buildPythonPackage rec {
pytestCheckHook
];
passthru.tests = {
inherit black flask magic-wormhole mitmproxy;
};
meta = with lib; {
homepage = "https://click.palletsprojects.com/";
description = "Create beautiful command line interfaces in Python";