Merge pull request #310079 from fabaff/pylutron-bump

python312Packages.pylutron: 0.2.12 -> 0.2.13
This commit is contained in:
Nick Cao 2024-05-08 10:57:53 -04:00 committed by GitHub
commit e76390b175
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,34 +1,34 @@
{ lib {
, buildPythonPackage lib,
, fetchPypi buildPythonPackage,
, setuptools fetchPypi,
pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pylutron"; pname = "pylutron";
version = "0.2.12"; version = "0.2.13";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-UTn4HfyiyQAekIZD4I5lacYb7ySRhW8OUgiOg33JZtQ="; hash = "sha256-s5qprIVPlq495XWKjgIuohDzPV0EfU43zkfQ2DvH04Y=";
}; };
nativeBuildInputs = [ build-system = [ setuptools ];
setuptools
];
# Project has no tests # Project has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "pylutron" ];
"pylutron"
];
meta = with lib; { meta = with lib; {
changelog = "https://github.com/thecynic/pylutron/releases/tag/${version}";
description = "Python library for controlling a Lutron RadioRA 2 system"; description = "Python library for controlling a Lutron RadioRA 2 system";
homepage = "https://github.com/thecynic/pylutron"; homepage = "https://github.com/thecynic/pylutron";
changelog = "https://github.com/thecynic/pylutron/releases/tag/${version}";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
}; };