Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyunifi / default.nix
blob5b0272076b9fc47e931e85faa9b654e42dc364b0
1 { lib, buildPythonPackage, fetchPypi
2 , requests }:
4 buildPythonPackage rec {
5   pname = "pyunifi";
6   version = "2.21";
7   format = "setuptools";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "ea7919caee14abe741016d8e37e96bc67a43e22f77c079e55962273f39dbea4e";
12   };
14   propagatedBuildInputs = [ requests ];
16   meta = with lib; {
17     description = "API towards Ubiquity Networks UniFi controller";
18     homepage = "https://github.com/finish06/unifi-api";
19     license = licenses.mit;
20     maintainers = with maintainers; [ peterhoeg ];
21   };