biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / romy / default.nix
blob32b8e9fbebc42e78b1548b52c4a5a0d77e43de16
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   pythonOlder,
7   aiohttp,
8 }:
10 buildPythonPackage rec {
11   pname = "romy";
12   version = "0.0.10";
13   pyproject = true;
15   disabled = pythonOlder "3.11";
17   src = fetchFromGitHub {
18     owner = "xeniter";
19     repo = "romy";
20     rev = "refs/tags/${version}";
21     hash = "sha256-pQI+/1xt1YE+L5CHsurkBr2dKMGR/dV5vrGHYM8wNGs=";
22   };
24   build-system = [ setuptools ];
26   dependencies = [ aiohttp ];
28   # Module has no tests
29   doCheck = false;
31   pythonImportsCheck = [ "romy" ];
33   meta = with lib; {
34     description = "Library to control Wi-Fi enabled ROMY vacuum cleaners";
35     homepage = "https://github.com/xeniter/romy";
36     changelog = "https://github.com/xeniter/romy/releases/tag/${version}";
37     license = licenses.agpl3Only;
38     maintainers = with maintainers; [ fab ];
39   };