Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / unifi / default.nix
blobbc868f0ed4f40dc53a9a5c87d8d20fdfb3a19db9
1 { lib, buildPythonPackage
2 , fetchPypi, urllib3 }:
4 buildPythonPackage rec {
5   pname = "unifi";
6   version = "1.2.5";
7   format = "setuptools";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "0prgx01hzs49prrazgxrinm7ivqzy57ch06qm2h7s1p957sazds8";
12   };
14   propagatedBuildInputs = [ urllib3 ];
16   # upstream has no tests
17   doCheck = false;
19   meta = with lib; {
20     description = "An API towards the Ubiquity Networks UniFi controller";
21     homepage    = "https://pypi.python.org/pypi/unifi/";
22     license     = licenses.mit;
23     maintainers = with maintainers; [ peterhoeg ];
24   };