Merge pull request #164968 from r-ryantm/auto-update/python3.10-invoke

python310Packages.invoke: 1.6.0 -> 1.7.0
This commit is contained in:
Fabian Affolter 2022-03-20 21:00:25 +01:00 committed by GitHub
commit 17b24b5262
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,15 +2,19 @@
, bash
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "invoke";
version = "1.6.0";
version = "1.7.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "374d1e2ecf78981da94bfaf95366216aaec27c2d6a7b7d5818d92da55aa258d3";
hash = "sha256-4zLkneQEY/IBYxX1HfQjE4VXcr6GQ1aGFWvBj0W1zGw=";
};
patchPhase = ''
@ -20,8 +24,14 @@ buildPythonPackage rec {
# errors with vendored libs
doCheck = false;
meta = {
pythonImportsCheck = [
"invoke"
];
meta = with lib; {
description = "Pythonic task execution";
license = lib.licenses.bsd2;
homepage = "https://www.pyinvoke.org/";
license = licenses.bsd2;
maintainers = with maintainers; [ ];
};
}