Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 26 lines 636 B view raw
1{ lib, buildPythonPackage, fetchPypi, isPy3k 2, aiohttp }: 3 4buildPythonPackage rec { 5 pname = "aiounifi"; 6 version = "23"; 7 8 disabled = ! isPy3k; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "0628058b644776132f2f893f1a2201a0142a38b6acf089c6b11a63ad5a752ba7"; 13 }; 14 15 propagatedBuildInputs = [ aiohttp ]; 16 17 # upstream has no tests 18 doCheck = false; 19 20 meta = with lib; { 21 description = "An asynchronous Python library for communicating with Unifi Controller API"; 22 homepage = "https://pypi.python.org/pypi/aiounifi/"; 23 license = licenses.mit; 24 maintainers = with maintainers; [ peterhoeg ]; 25 }; 26}