Merge pull request #307269 from fabaff/pyrisco-bump

python312Packages.pyrisco: 0.6.0 -> 0.6.1
This commit is contained in:
Fabian Affolter 2024-04-27 22:37:01 +02:00 committed by GitHub
commit ade680e69e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,14 +1,15 @@
{ lib {
, aiohttp lib,
, buildPythonPackage aiohttp,
, fetchFromGitHub buildPythonPackage,
, pythonOlder fetchFromGitHub,
, setuptools pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyrisco"; pname = "pyrisco";
version = "0.6.0"; version = "0.6.1";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -17,23 +18,17 @@ buildPythonPackage rec {
owner = "OnFreund"; owner = "OnFreund";
repo = "pyrisco"; repo = "pyrisco";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-+qnwJzf4nKio4IJo7NNA19B3tbOd+jhnGryiRMcdi6o="; hash = "sha256-NviB3C+YApOo3WGQ1L8Qwyh8C9l8sCgaSA+xn2wYhjg=";
}; };
nativeBuildInputs = [ build-system = [ setuptools ];
setuptools
];
propagatedBuildInputs = [ dependencies = [ aiohttp ];
aiohttp
];
# Project has no tests # Project has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "pyrisco" ];
"pyrisco"
];
meta = with lib; { meta = with lib; {
description = "Python interface to Risco alarm systems through Risco Cloud"; description = "Python interface to Risco alarm systems through Risco Cloud";