mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
Merge pull request #300207 from fabaff/romy
python311Packages.romy: init at 0.0.9
This commit is contained in:
commit
1b797b7b15
45
pkgs/development/python-modules/romy/default.nix
Normal file
45
pkgs/development/python-modules/romy/default.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, setuptools
|
||||
, pythonOlder
|
||||
, aiohttp
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "romy";
|
||||
version = "0.0.9";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "xeniter";
|
||||
repo = "romy";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-r7g8DE8eBFHkMHzGfNlYi+XxrRIvH8IDxGOSEiJKKqM=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
aiohttp
|
||||
];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"romy"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library to control Wi-Fi enabled ROMY vacuum cleaners";
|
||||
homepage = "https://github.com/xeniter/romy";
|
||||
changelog = "https://github.com/xeniter/romy/releases/tag/${version}";
|
||||
license = licenses.agpl3Only;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -4193,7 +4193,8 @@
|
||||
rokuecp
|
||||
];
|
||||
"romy" = ps: with ps; [
|
||||
]; # missing inputs: romy
|
||||
romy
|
||||
];
|
||||
"roomba" = ps: with ps; [
|
||||
roombapy
|
||||
];
|
||||
@ -6424,6 +6425,7 @@
|
||||
"rmvtransport"
|
||||
"roborock"
|
||||
"roku"
|
||||
"romy"
|
||||
"roomba"
|
||||
"roon"
|
||||
"rpi_power"
|
||||
|
@ -13156,6 +13156,8 @@ self: super: with self; {
|
||||
|
||||
roman = callPackage ../development/python-modules/roman { };
|
||||
|
||||
romy = callPackage ../development/python-modules/romy { };
|
||||
|
||||
roombapy = callPackage ../development/python-modules/roombapy { };
|
||||
|
||||
roonapi = callPackage ../development/python-modules/roonapi { };
|
||||
|
Loading…
Reference in New Issue
Block a user