1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00

python3Packages.pylaunches: init at 1.2.0

This commit is contained in:
Fabian Affolter 2021-11-11 09:49:40 +01:00
parent 2de888a972
commit efe55aae34
2 changed files with 54 additions and 0 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

@ -6564,6 +6564,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 { };