Merge pull request #302451 from fabaff/pyfibaro-bump

python312Packages.pyfibaro: 0.7.6 -> 0.7.7
This commit is contained in:
Fabian Affolter 2024-04-08 08:35:19 +02:00 committed by GitHub
commit 971b9b747d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 23 deletions

View File

@ -1,45 +1,38 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, requests
, requests-mock
, setuptools
, wheel
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
requests,
requests-mock,
setuptools,
}:
buildPythonPackage rec {
pname = "pyfibaro";
version = "0.7.6";
format = "pyproject";
version = "0.7.7";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "rappenze";
repo = pname;
repo = "pyfibaro";
rev = "refs/tags/${version}";
hash = "sha256-yE9HkAlGj1t90FwmwHDsk3ea2UOl0bG3UtYXxz/SWbI=";
hash = "sha256-jsl2Xc6bzN7SVyMnFeCwMpFUEa6xUWGn/T96MrDXlCE=";
};
nativeBuildInputs = [
setuptools
wheel
];
build-system = [ setuptools ];
propagatedBuildInputs = [
requests
];
dependencies = [ requests ];
nativeCheckInputs = [
pytestCheckHook
requests-mock
];
pythonImportsCheck = [
"pyfibaro"
];
pythonImportsCheck = [ "pyfibaro" ];
meta = with lib; {
description = "Library to access FIBARO Home center";