blob: ba4dda77e158d34671db7d6c454751a3cd1e6e71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
lib,
buildPythonPackage,
fetchPypi,
pycryptodome,
}:
buildPythonPackage rec {
pname = "temescal";
version = "0.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-MfTftheNj8zI3iXIIJU+jy9xikvX9eO58LA0NCMJBnY=";
};
propagatedBuildInputs = [ pycryptodome ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "temescal" ];
meta = {
description = "Module for interacting with LG speaker systems";
homepage = "https://github.com/google/python-temescal";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|