evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / temescal / default.nix
blobc7a824b92c2eef054ed5946825e8030b8a58062a
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   pycryptodome,
7 }:
9 buildPythonPackage rec {
10   pname = "temescal";
11   version = "0.5";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-MfTftheNj8zI3iXIIJU+jy9xikvX9eO58LA0NCMJBnY=";
19   };
21   propagatedBuildInputs = [ pycryptodome ];
23   # Module has no tests
24   doCheck = false;
26   pythonImportsCheck = [ "temescal" ];
28   meta = with lib; {
29     description = "Module for interacting with LG speaker systems";
30     homepage = "https://github.com/google/python-temescal";
31     license = licenses.asl20;
32     maintainers = with maintainers; [ fab ];
33   };