Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
916 B
Nix
47 lines
916 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "nextinspace";
|
|
version = "2.0.5";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "not-stirred";
|
|
repo = "nextinspace";
|
|
tag = "v${version}";
|
|
hash = "sha256-CrhzCvIA3YAFsWvdemvK1RLMacsM5RtgMjLeiqz5MwY=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
poetry-core
|
|
];
|
|
|
|
pythonPath = with python3.pkgs; [
|
|
requests
|
|
tzlocal
|
|
colorama
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
pytest-lazy-fixture
|
|
pytestCheckHook
|
|
requests-mock
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"nextinspace"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Print upcoming space-related events in your terminal";
|
|
mainProgram = "nextinspace";
|
|
homepage = "https://github.com/The-Kid-Gid/nextinspace";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ penguwin ];
|
|
};
|
|
}
|