Merge pull request #145466 from fabaff/pylaunches

python3Packages.pylaunches: init at 1.2.0
This commit is contained in:
Fabian Affolter 2021-11-12 09:03:22 +01:00 committed by GitHub
commit c3fdcf88b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 55 additions and 1 deletions

View file

@ -0,0 +1,52 @@
{ lib
, aiohttp
, aresponses
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pytest-asyncio
, pythonOlder
}:
buildPythonPackage rec {
pname = "pylaunches";
version = "1.2.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ludeeus";
repo = pname;
rev = version;
sha256 = "0mczxkwczyh9kva4xzpmnawy0hjha1fdrwj6igip9w5z1q48zs49";
};
propagatedBuildInputs = [
aiohttp
];
checkInputs = [
aresponses
pytestCheckHook
pytest-asyncio
];
postPatch = ''
# Upstream doesn't set version in the repo
substituteInPlace setup.py \
--replace 'version="main",' 'version="${version}",' \
--replace ', "pytest-runner"' ""
'';
pythonImportsCheck = [
"pylaunches"
];
meta = with lib; {
description = "Python module to get information about upcoming space launches";
homepage = "https://github.com/ludeeus/pylaunches";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -448,7 +448,7 @@
"lametric" = ps: with ps; [ lmnotify ];
"lannouncer" = ps: with ps; [ ];
"lastfm" = ps: with ps; [ pylast ];
"launch_library" = ps: with ps; [ ]; # missing inputs: pylaunches
"launch_library" = ps: with ps; [ pylaunches ];
"lcn" = ps: with ps; [ pypck ];
"lg_netcast" = ps: with ps; [ pylgnetcast ];
"lg_soundbar" = ps: with ps; [ ]; # missing inputs: temescal

View file

@ -6570,6 +6570,8 @@ in {
pylatexenc = callPackage ../development/python-modules/pylatexenc { };
pylaunches = callPackage ../development/python-modules/pylaunches { };
PyLD = callPackage ../development/python-modules/PyLD { };
pylev = callPackage ../development/python-modules/pylev { };