Merge pull request #301932 from fabaff/pynobo-bump

python312Packages.pynobo: 1.8.0 -> 1.8.1
This commit is contained in:
Fabian Affolter 2024-04-06 10:41:20 +02:00 committed by GitHub
commit a24d6aca4d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 13 deletions

View File

@ -1,13 +1,14 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "pynobo";
version = "1.8.0";
version = "1.8.1";
pyproject = true;
disabled = pythonOlder "3.7";
@ -16,19 +17,15 @@ buildPythonPackage rec {
owner = "echoromeo";
repo = "pynobo";
rev = "refs/tags/v${version}";
hash = "sha256-Hfyf7XGleDWTKKWNlItcBFuiS3UEwsYed7v5FPRdC0w=";
hash = "sha256-OSgpT9CLkfnv1BLAJApZUs3vMc1WE2eG7ZrinCLy/0U=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"pynobo"
];
pythonImportsCheck = [ "pynobo" ];
meta = with lib; {
description = "Python TCP/IP interface for Nobo Hub/Nobo Energy Control devices";