Merge pull request #302041 from fabaff/aranet4-bump

python312Packages.aranet4: 2.2.3 -> 2.3.0
This commit is contained in:
Fabian Affolter 2024-04-22 08:32:27 +02:00 committed by GitHub
commit d0a7011604
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,11 +1,12 @@
{ lib {
, bleak lib,
, buildPythonPackage bleak,
, fetchFromGitHub buildPythonPackage,
, pytestCheckHook fetchFromGitHub,
, pythonOlder pytestCheckHook,
, requests pythonOlder,
, setuptools requests,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -22,22 +23,16 @@ buildPythonPackage rec {
hash = "sha256-j53d2Ki9xVWGHWkAu1wkjYE56Xq7kfMmqQrQiKrBg2I="; hash = "sha256-j53d2Ki9xVWGHWkAu1wkjYE56Xq7kfMmqQrQiKrBg2I=";
}; };
nativeBuildInputs = [ build-system = [ setuptools ];
setuptools
];
propagatedBuildInputs = [ dependencies = [
bleak bleak
requests requests
]; ];
nativeCheckInputs = [ nativeCheckInputs = [ pytestCheckHook ];
pytestCheckHook
];
pythonImportsCheck = [ pythonImportsCheck = [ "aranet4" ];
"aranet4"
];
disabledTests = [ disabledTests = [
# Test compares rendered output # Test compares rendered output
@ -46,9 +41,9 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Module to interact with Aranet4 devices"; description = "Module to interact with Aranet4 devices";
mainProgram = "aranetctl";
homepage = "https://github.com/Anrijs/Aranet4-Python"; homepage = "https://github.com/Anrijs/Aranet4-Python";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "aranetctl";
}; };
} }