Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 25 lines 621 B view raw
1{ lib, buildPythonPackage, isPy3k, fetchPypi, aiohttp, async-timeout }: 2 3buildPythonPackage rec { 4 pname = "luftdaten"; 5 version = "0.6.2"; 6 7 disabled = !isPy3k; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "0919hcycv2rkn99lv4dn78i827mgvm3vagm9xcc6qgawsli8vrlp"; 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}