croc: 10.1.1 -> 10.1.3 (#364662)
[NixPkgs.git] / pkgs / development / python-modules / pyunifi / default.nix
blobb006354be12cfb0b4d24ff3476b940e4c738983d
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   requests,
6 }:
8 buildPythonPackage rec {
9   pname = "pyunifi";
10   version = "2.21";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "ea7919caee14abe741016d8e37e96bc67a43e22f77c079e55962273f39dbea4e";
16   };
18   propagatedBuildInputs = [ requests ];
20   meta = with lib; {
21     description = "API towards Ubiquity Networks UniFi controller";
22     homepage = "https://github.com/finish06/unifi-api";
23     license = licenses.mit;
24     maintainers = with maintainers; [ peterhoeg ];
25   };