biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / smarthab / default.nix
blob4060a3a92a91d75bcbcde462e2ae5d9ab30df47a
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   aiohttp,
6 }:
8 buildPythonPackage rec {
9   pname = "smarthab";
10   version = "0.21";
11   format = "setuptools";
13   src = fetchPypi {
14     pname = "SmartHab";
15     inherit version;
16     sha256 = "bf929455a2f7cc1e275b331de73d983587138a8d9179574988ba05fa152d3ccf";
17   };
19   propagatedBuildInputs = [ aiohttp ];
21   # no tests on PyPI, no tags on GitLab
22   doCheck = false;
24   pythonImportsCheck = [ "pysmarthab" ];
26   meta = with lib; {
27     description = "Control devices in a SmartHab-powered home";
28     homepage = "https://gitlab.com/outadoc/python-smarthab";
29     license = licenses.gpl3Plus;
30     maintainers = with maintainers; [ dotlambda ];
31   };