Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 639 B view raw
1{ lib 2, aiohttp 3, buildPythonPackage 4, fetchPypi 5, pythonOlder 6}: 7 8buildPythonPackage rec { 9 pname = "faadelays"; 10 version = "0.0.7"; 11 disabled = pythonOlder "3.6"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-osZqfSYlKPYZMelBR6YB331iRB4DTjCUlmX7pcrIiGk="; 16 }; 17 18 propagatedBuildInputs = [ aiohttp ]; 19 20 # Project has no tests 21 doCheck = false; 22 pythonImportsCheck = [ "faadelays" ]; 23 24 meta = with lib; { 25 description = "Python package to retrieve FAA airport status"; 26 homepage = "https://github.com/ntilley905/faadelays"; 27 license = licenses.mit; 28 maintainers = with maintainers; [ fab ]; 29 }; 30}