python312Packages.pylutron: 0.2.11 -> 0.2.12

https://github.com/thecynic/pylutron/releases/tag/0.2.12
This commit is contained in:
R. Ryantm 2024-02-12 16:45:09 +00:00 committed by Martin Weinelt
parent 956b28d2ba
commit 330769255a

View File

@ -1,23 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
}:
buildPythonPackage rec {
pname = "pylutron";
version = "0.2.11";
format = "setuptools";
version = "0.2.12";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-9M7bCZD3zGZM62ID0yB/neKkF+6UW8x5m2y5vj/mYes=";
hash = "sha256-UTn4HfyiyQAekIZD4I5lacYb7ySRhW8OUgiOg33JZtQ=";
};
nativeBuildInputs = [
setuptools
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pylutron" ];
pythonImportsCheck = [
"pylutron"
];
meta = with lib; {
changelog = "https://github.com/thecynic/pylutron/releases/tag/${version}";
description = "Python library for controlling a Lutron RadioRA 2 system";
homepage = "https://github.com/thecynic/pylutron";
license = with licenses; [ mit ];