python3Packages.faadelays: 0.0.7 -> 2023.8.0
(cherry picked from commit 299f3a8896
)
This commit is contained in:
parent
ade9da151c
commit
a7642023cf
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user