13 buildPythonPackage rec {
18 disabled = pythonOlder "3.11";
20 src = fetchFromGitHub {
23 rev = "refs/tags/${version}";
24 hash = "sha256-NewzzZuiXwaWU59bu+M2QcSfydL1khvw/YJkbZ58W2Q=";
28 # Upstream doesn't set version in the repo
29 substituteInPlace pyproject.toml \
30 --replace-fail 'version = "0"' 'version = "${version}"'
33 build-system = [ poetry-core ];
35 dependencies = [ aiohttp ];
43 pythonImportsCheck = [ "pylaunches" ];
46 description = "Python module to get information about upcoming space launches";
47 homepage = "https://github.com/ludeeus/pylaunches";
48 changelog = "https://github.com/ludeeus/pylaunches/releases/tag/${version}";
49 license = licenses.mit;
50 maintainers = with maintainers; [ fab ];