1{ 2 lib, 3 aiohttp, 4 buildPythonPackage, 5 fetchPypi, 6 pythonOlder, 7 setuptools, 8}: 9 10buildPythonPackage rec { 11 pname = "faadelays"; 12 version = "2023.9.1"; 13 format = "pyproject"; 14 15 disabled = pythonOlder "3.6"; 16 17 src = fetchPypi { 18 inherit pname version; 19 hash = "sha256-ngMFd+BE3hKeaeGEX4xHpzDIrtGFDsSwxBbrc4ZMFas="; 20 }; 21 22 nativeBuildInputs = [ setuptools ]; 23 24 propagatedBuildInputs = [ aiohttp ]; 25 26 # Project has no tests 27 doCheck = false; 28 29 pythonImportsCheck = [ "faadelays" ]; 30 31 meta = with lib; { 32 changelog = "https://github.com/ntilley905/faadelays/releases/tag/v${version}"; 33 description = "Python package to retrieve FAA airport status"; 34 homepage = "https://github.com/ntilley905/faadelays"; 35 license = licenses.mit; 36 maintainers = with maintainers; [ fab ]; 37 }; 38}