mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Merge pull request #115134 from fabaff/faadelays
python3Packages.faadelays: init at 0.0.6
This commit is contained in:
commit
ae385027f9
30
pkgs/development/python-modules/faadelays/default.nix
Normal file
30
pkgs/development/python-modules/faadelays/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "faadelays";
|
||||||
|
version = "0.0.6";
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "02z8p0n9d6n4l6v1m969009gxwmy5v14z108r4f3swd6yrk0h2xd";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ aiohttp ];
|
||||||
|
|
||||||
|
# Project has no tests
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "faadelays" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python package to retrieve FAA airport status";
|
||||||
|
homepage = "https://github.com/ntilley905/faadelays";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -2173,6 +2173,8 @@ in {
|
|||||||
|
|
||||||
Fabric = callPackage ../development/python-modules/Fabric { };
|
Fabric = callPackage ../development/python-modules/Fabric { };
|
||||||
|
|
||||||
|
faadelays = callPackage ../development/python-modules/faadelays { };
|
||||||
|
|
||||||
fabulous = callPackage ../development/python-modules/fabulous { };
|
fabulous = callPackage ../development/python-modules/fabulous { };
|
||||||
|
|
||||||
facebook-sdk = callPackage ../development/python-modules/facebook-sdk { };
|
facebook-sdk = callPackage ../development/python-modules/facebook-sdk { };
|
||||||
|
Loading…
Reference in New Issue
Block a user