Skip to content

Commit

Permalink
Merge pull request #209469 from fabaff/pyrainbird-bump
Browse files Browse the repository at this point in the history
python310Packages.pyrainbird: 0.7.1 -> 1.1.0
  • Loading branch information
fabaff authored Jan 22, 2023
2 parents 8308b25 + 24b9734 commit 0c9c29c
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions pkgs/development/python-modules/pyrainbird/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
, fetchFromGitHub
, parameterized
, pycryptodome
, pydantic
, pytest-aiohttp
, pytestCheckHook
, pythonOlder
Expand All @@ -14,16 +15,16 @@

buildPythonPackage rec {
pname = "pyrainbird";
version = "0.7.1";
version = "1.1.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-qAFc1LPGG8O46He2cjhs567yqaZy7d5CMeDH/sqnriw=";
};

postPatch = ''
Expand All @@ -36,6 +37,7 @@ buildPythonPackage rec {

propagatedBuildInputs = [
pycryptodome
pydantic
pyyaml
requests
];
Expand All @@ -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 ];
};
Expand Down

0 comments on commit 0c9c29c

Please sign in to comment.