mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
python3Packages.invocations: add missing input
This commit is contained in:
parent
b161e729ab
commit
b9f4e0550e
@ -1,11 +1,12 @@
|
||||
{ buildPythonPackage
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, blessings
|
||||
, fetchFromGitHub
|
||||
, invoke
|
||||
, lib
|
||||
, releases
|
||||
, semantic-version
|
||||
, tabulate
|
||||
, tqdm
|
||||
, twine
|
||||
}:
|
||||
|
||||
@ -27,12 +28,22 @@ buildPythonPackage rec {
|
||||
--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.
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "invocations" ];
|
||||
pythonImportsCheck = [
|
||||
"invocations"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Common/best-practice Invoke tasks and collections";
|
||||
|
Loading…
Reference in New Issue
Block a user