blob: 88890c4af0857c4ecda37a43d169009891c34d93 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
requests,
}:
buildPythonPackage rec {
pname = "pyunifi";
version = "2.21";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "ea7919caee14abe741016d8e37e96bc67a43e22f77c079e55962273f39dbea4e";
};
propagatedBuildInputs = [ requests ];
meta = {
description = "API towards Ubiquity Networks UniFi controller";
homepage = "https://github.com/finish06/unifi-api";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ peterhoeg ];
};
}
|