python3Packages.faadelays: 0.0.7 -> 2023.8.0

(cherry picked from commit 299f3a8896)
This commit is contained in:
Martin Weinelt 2023-09-15 14:06:07 +02:00
parent ade9da151c
commit a7642023cf
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -3,25 +3,38 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "faadelays";
version = "0.0.7";
version = "2023.8.0";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-osZqfSYlKPYZMelBR6YB331iRB4DTjCUlmX7pcrIiGk=";
hash = "sha256-VAQQI9cMRKGe7RAUxoI1bBojzRq6cRz2jpeDA+GMuUI=";
};
propagatedBuildInputs = [ aiohttp ];
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
aiohttp
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "faadelays" ];
pythonImportsCheck = [
"faadelays"
];
meta = with lib; {
changelog = "https://github.com/ntilley905/faadelays/releases/tag/v${version}";
description = "Python package to retrieve FAA airport status";
homepage = "https://github.com/ntilley905/faadelays";
license = licenses.mit;