Merge pull request #302037 from fabaff/aiopvapi-bump

python312Packages.aiopvapi: 3.1.0 -> 3.1.1
This commit is contained in:
Fabian Affolter 2024-04-06 15:43:27 +02:00 committed by GitHub
commit 81c05a4a27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,15 +1,16 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "aiopvapi";
version = "3.1.0";
version = "3.1.1";
pyproject = true;
disabled = pythonOlder "3.7";
@ -18,23 +19,20 @@ buildPythonPackage rec {
owner = "sander76";
repo = "aio-powerview-api";
rev = "refs/tags/v${version}";
hash = "sha256-nJjYGPxpnbq/8XFmLKbMU71buFdaNUj7PQES5FnlN3o=";
hash = "sha256-WtTqtVr1oL86dpsAIK55pbXWU4X/cajVLlggd6hfM4c=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
aiohttp
];
dependencies = [ aiohttp ];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"aiopvapi"
pythonImportsCheck = [ "aiopvapi" ];
disabledTests = [
# AssertionError
"test_remove_shade_from_scene"
];
meta = with lib; {