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
1 changed files with 13 additions and 13 deletions

View File

@ -1,34 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "pylutron";
version = "0.2.12";
version = "0.2.13";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-UTn4HfyiyQAekIZD4I5lacYb7ySRhW8OUgiOg33JZtQ=";
hash = "sha256-s5qprIVPlq495XWKjgIuohDzPV0EfU43zkfQ2DvH04Y=";
};
nativeBuildInputs = [
setuptools
];
build-system = [ 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";
changelog = "https://github.com/thecynic/pylutron/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};