Merge pull request #301423 from r-ryantm/auto-update/python312Packages.romy

python312Packages.romy: 0.0.9 -> 0.0.10
This commit is contained in:
Nick Cao 2024-04-04 09:27:41 -04:00 committed by GitHub
commit 919d30c7a2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,14 +1,15 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pythonOlder
, aiohttp
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pythonOlder,
aiohttp,
}:
buildPythonPackage rec {
pname = "romy";
version = "0.0.9";
version = "0.0.10";
pyproject = true;
disabled = pythonOlder "3.11";
@ -17,23 +18,17 @@ buildPythonPackage rec {
owner = "xeniter";
repo = "romy";
rev = "refs/tags/${version}";
hash = "sha256-r7g8DE8eBFHkMHzGfNlYi+XxrRIvH8IDxGOSEiJKKqM=";
hash = "sha256-pQI+/1xt1YE+L5CHsurkBr2dKMGR/dV5vrGHYM8wNGs=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
aiohttp
];
dependencies = [ aiohttp ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"romy"
];
pythonImportsCheck = [ "romy" ];
meta = with lib; {
description = "Library to control Wi-Fi enabled ROMY vacuum cleaners";