linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / faadelays / default.nix
blob3175aabcae84769d4b7187b3c01cc1f5bc6da47c
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchPypi
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "faadelays";
10   version = "0.0.6";
11   disabled = pythonOlder "3.6";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "02z8p0n9d6n4l6v1m969009gxwmy5v14z108r4f3swd6yrk0h2xd";
16   };
18   propagatedBuildInputs = [ aiohttp ];
20   # Project has no tests
21   doCheck = false;
22   pythonImportsCheck = [ "faadelays" ];
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   };