Merge pull request #288888 from fabaff/pyrisco-bump

python311Packages.pyrisco: 0.5.8 -> 0.5.9
This commit is contained in:
Nick Cao 2024-02-15 09:07:21 -05:00 committed by GitHub
commit 59cc70f787
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,21 +3,27 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "pyrisco";
version = "0.5.8";
format = "setuptools";
version = "0.5.9";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "OnFreund";
repo = pname;
rev = "v${version}";
hash = "sha256-PQ1h9UVQ2DQMInxdAaLES7uDWAxwDra+YfAmz5jjV6g=";
repo = "pyrisco";
rev = "refs/tags/v${version}";
hash = "sha256-qapJcYesOddXFChApFT7hvxLblUigDW40zRe6CYWx+s=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
aiohttp
];
@ -32,6 +38,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python interface to Risco alarm systems through Risco Cloud";
homepage = "https://github.com/OnFreund/pyrisco";
changelog = "https://github.com/OnFreund/pyrisco/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};