evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / goveelights / default.nix
blobf12caa93c6be37050ed633440e580ecdfec77daa
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   requests,
7 }:
9 buildPythonPackage rec {
10   pname = "goveelights";
11   version = "0.1.2";
12   format = "setuptools";
14   disabled = pythonOlder "3.8";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-A7tfY+aFzhfruCZ43usj1/CsTejbPMzHM8SYrY/TU1s=";
19   };
21   propagatedBuildInputs = [ requests ];
23   # Module has no tests
24   doCheck = false;
26   pythonImportsCheck = [ "goveelights" ];
28   meta = with lib; {
29     description = "Python module for interacting with the Govee API";
30     homepage = "https://github.com/arcanearronax/govee_lights";
31     license = licenses.mit;
32     maintainers = with maintainers; [ fab ];
33   };