kdePackages.kirigami-addons: 1.5.0 -> 1.6.0 (#360539)
[NixPkgs.git] / pkgs / development / python-modules / smarthab / default.nix
blob44bde1243e8c507295aeeffa4d38812c7aa28349
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   aiohttp,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "smarthab";
11   version = "0.21";
12   pyproject = true;
14   src = fetchPypi {
15     pname = "SmartHab";
16     inherit version;
17     hash = "sha256-v5KUVaL3zB4nWzMd5z2YNYcTio2ReVdJiLoF+hUtPM8=";
18   };
20   build-system = [ setuptools ];
22   dependencies = [ aiohttp ];
24   # no tests on PyPI, no tags on GitLab
25   doCheck = false;
27   pythonImportsCheck = [ "pysmarthab" ];
29   meta = with lib; {
30     description = "Control devices in a SmartHab-powered home";
31     homepage = "https://gitlab.com/outadoc/python-smarthab";
32     license = licenses.gpl3Plus;
33     maintainers = with maintainers; [ dotlambda ];
34   };