ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pyunifi / default.nix
blob0ac0a6941254e94467102ba2c3725b5db92f316d
1 { lib, buildPythonPackage, fetchPypi
2 , requests }:
4 buildPythonPackage rec {
5   pname = "pyunifi";
6   version = "2.21";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "ea7919caee14abe741016d8e37e96bc67a43e22f77c079e55962273f39dbea4e";
11   };
13   propagatedBuildInputs = [ requests ];
15   meta = with lib; {
16     description = "API towards Ubiquity Networks UniFi controller";
17     homepage = "https://github.com/finish06/unifi-api";
18     license = licenses.mit;
19     maintainers = with maintainers; [ peterhoeg ];
20   };