Merge pull request #207079 from fabaff/pyrainbird-bump

python310Packages.pyrainbird: 0.6.3 -> 0.7.1
This commit is contained in:
Fabian Affolter 2022-12-21 22:33:22 +01:00 committed by GitHub
commit 77e5c42a0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,7 @@
, fetchFromGitHub , fetchFromGitHub
, parameterized , parameterized
, pycryptodome , pycryptodome
, pytest-aiohttp
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, pyyaml , pyyaml
@ -13,7 +14,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyrainbird"; pname = "pyrainbird";
version = "0.6.3"; version = "0.7.1";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.9"; disabled = pythonOlder "3.9";
@ -22,7 +23,7 @@ buildPythonPackage rec {
owner = "jbarrancos"; owner = "jbarrancos";
repo = pname; repo = pname;
rev = version; rev = version;
hash = "sha256-yGUBCs1IxbGKBo21gExFIqDawM2EHlO+jiRqonEUnPk="; hash = "sha256-pN/QILpXJoQAccB7CSDLxCDYfijf/VJbYw+NRUI4kvs=";
}; };
postPatch = '' postPatch = ''
@ -41,6 +42,7 @@ buildPythonPackage rec {
checkInputs = [ checkInputs = [
parameterized parameterized
pytest-aiohttp
pytestCheckHook pytestCheckHook
requests-mock requests-mock
responses responses
@ -53,6 +55,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Module to interact with Rainbird controllers"; description = "Module to interact with Rainbird controllers";
homepage = "https://github.com/jbarrancos/pyrainbird/"; homepage = "https://github.com/jbarrancos/pyrainbird/";
changelog = "https://github.com/jbarrancos/pyrainbird/releases/tag/${version}";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
}; };