depot/third_party/nixpkgs/pkgs/development/python-modules/unifi/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

24 lines
568 B
Nix

{ lib, buildPythonPackage
, fetchPypi, urllib3 }:
buildPythonPackage rec {
pname = "unifi";
version = "1.2.5";
src = fetchPypi {
inherit pname version;
sha256 = "0prgx01hzs49prrazgxrinm7ivqzy57ch06qm2h7s1p957sazds8";
};
propagatedBuildInputs = [ urllib3 ];
# upstream has no tests
doCheck = false;
meta = with lib; {
description = "An API towards the Ubiquity Networks UniFi controller";
homepage = "https://pypi.python.org/pypi/unifi/";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
};
}