Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 623 B view raw
1{ lib, buildPythonPackage, isPy3k, fetchPypi, aiohttp, async-timeout }: 2 3buildPythonPackage rec { 4 pname = "luftdaten"; 5 version = "0.6.4"; 6 7 disabled = !isPy3k; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "1w1f0kmiwslg1dxn7gq0ak8f5wajlwl03r5zklshjc11j34b4d5i"; 12 }; 13 14 propagatedBuildInputs = [ aiohttp async-timeout ]; 15 16 # No tests implemented 17 doCheck = false; 18 19 meta = with lib; { 20 description = "Python API for interacting with luftdaten.info"; 21 homepage = "https://github.com/fabaff/python-luftdaten"; 22 license = licenses.mit; 23 maintainers = with maintainers; [ dotlambda ]; 24 }; 25}