python3Packages.invocations: add missing input

This commit is contained in:
Fabian Affolter 2022-04-21 10:04:24 +02:00
parent b161e729ab
commit b9f4e0550e

View file

@ -1,11 +1,12 @@
{ buildPythonPackage { lib
, buildPythonPackage
, blessings , blessings
, fetchFromGitHub , fetchFromGitHub
, invoke , invoke
, lib
, releases , releases
, semantic-version , semantic-version
, tabulate , tabulate
, tqdm
, twine , twine
}: }:
@ -27,12 +28,22 @@ buildPythonPackage rec {
--replace "tabulate==0.7.5" "tabulate" --replace "tabulate==0.7.5" "tabulate"
''; '';
propagatedBuildInputs = [ blessings invoke releases semantic-version tabulate twine ]; propagatedBuildInputs = [
blessings
invoke
releases
semantic-version
tabulate
tqdm
twine
];
# There's an error loading the test suite. See https://github.com/pyinvoke/invocations/issues/29. # There's an error loading the test suite. See https://github.com/pyinvoke/invocations/issues/29.
doCheck = false; doCheck = false;
pythonImportsCheck = [ "invocations" ]; pythonImportsCheck = [
"invocations"
];
meta = with lib; { meta = with lib; {
description = "Common/best-practice Invoke tasks and collections"; description = "Common/best-practice Invoke tasks and collections";