Merge pull request #147109 from fabaff/bump-hole

python3Packages.hole: 0.6.0 -> 0.7.0
This commit is contained in:
Fabian Affolter 2021-11-23 23:11:56 +01:00 committed by GitHub
commit 9a94d37225
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,17 +1,21 @@
{ lib
, buildPythonPackage
, fetchPypi
, aiohttp
, async-timeout
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "hole";
version = "0.6.0";
version = "0.7.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-T6U6WVx+5+/UaSS2mMmjAjWu67ut+YGpq2ooP9YEazI=";
sha256 = "sha256-yZpzGfB5RTWaRn2DmT+cbSDC0pL16FyUc0Nr/V6TlhU=";
};
propagatedBuildInputs = [
@ -22,7 +26,9 @@ buildPythonPackage rec {
# no tests are present
doCheck = false;
pythonImportsCheck = [ "hole" ];
pythonImportsCheck = [
"hole"
];
meta = with lib; {
description = "Python API for interacting with a Pihole instance.";