File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed
development/python-modules/unifi-ap Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ lib ,
3+ buildPythonPackage ,
4+ fetchFromGitHub ,
5+ setuptools ,
6+ paramiko ,
7+ } :
8+
9+ buildPythonPackage rec {
10+ pname = "unifi-ap" ;
11+ version = "0.0.1" ;
12+ pyproject = true ;
13+
14+ src = fetchFromGitHub {
15+ owner = "tofuSCHNITZEL" ;
16+ repo = "unifi_ap" ;
17+ rev = "v${ version } " ;
18+ hash = "sha256-dEaDRcQEx+n+zvxVHD58B1AdFj004L76AtVDesnP+gQ=" ;
19+ } ;
20+
21+ build-system = [
22+ setuptools
23+ ] ;
24+
25+ pythonRelaxDeps = [ "paramiko" ] ;
26+
27+ dependencies = [
28+ paramiko
29+ ] ;
30+
31+ pythonImportsCheck = [
32+ "unifi_ap"
33+ ] ;
34+
35+ doCheck = false ; # no tests
36+
37+ meta = {
38+ changelog = "https://github.com/tofuSCHNITZEL/unifi_ap/releases/tag/v${ version } " ;
39+ description = "Python API for UniFi accesspoints" ;
40+ homepage = "https://github.com/tofuSCHNITZEL/unifi_ap" ;
41+ license = lib . licenses . mit ;
42+ maintainers = with lib . maintainers ; [ ] ;
43+ } ;
44+ }
Original file line number Diff line number Diff line change @@ -16862,6 +16862,8 @@ self: super: with self; {
1686216862
1686316863 unifi = callPackage ../development/python-modules/unifi { };
1686416864
16865+ unifi-ap = callPackage ../development/python-modules/unifi-ap { };
16866+
1686516867 unifi-discovery = callPackage ../development/python-modules/unifi-discovery { };
1686616868
1686716869 unify = callPackage ../development/python-modules/unify { };
You can’t perform that action at this time.
0 commit comments