Merge pull request #301423 from r-ryantm/auto-update/python312Packages.romy
python312Packages.romy: 0.0.9 -> 0.0.10
This commit is contained in:
commit
919d30c7a2
1 changed files with 12 additions and 17 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue