python310Packages.pyrainbird: 0.7.1 -> 1.0.0

Changelog: https://github.com/allenporter/pyrainbird/releases/tag/1.0.0

Switch to a maintained fork
This commit is contained in:
Fabian Affolter
2023-01-22 12:07:11 +01:00
parent 2878ebbaf1
commit 25a604c919
@@ -8,22 +8,23 @@
, pythonOlder
, pyyaml
, requests
, pydantic
, requests-mock
, responses
}:
buildPythonPackage rec {
pname = "pyrainbird";
version = "0.7.1";
version = "1.0.0";
format = "setuptools";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "jbarrancos";
owner = "allenporter";
repo = pname;
rev = version;
hash = "sha256-pN/QILpXJoQAccB7CSDLxCDYfijf/VJbYw+NRUI4kvs=";
rev = "refs/tags/${version}";
hash = "sha256-5IEzoxuwIzMfHzW0oD/LC+iWf+yC05nfCJd5tzMccrc=";
};
postPatch = ''
@@ -46,6 +47,7 @@ buildPythonPackage rec {
pytestCheckHook
requests-mock
responses
pydantic
];
pythonImportsCheck = [
@@ -54,8 +56,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Module to interact with Rainbird controllers";
homepage = "https://github.com/jbarrancos/pyrainbird/";
changelog = "https://github.com/jbarrancos/pyrainbird/releases/tag/${version}";
homepage = "https://github.com/allenporter/pyrainbird";
changelog = "https://github.com/allenporter/pyrainbird/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};