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
37 lines
729 B
Nix
37 lines
729 B
Nix
{
|
|
python3Packages,
|
|
lib,
|
|
fetchPypi,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "snowmachine";
|
|
version = "2.0.2";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-GhCfiMPEYa9EGCyVDncqKtLKpSN0SwIQ0XnmGEXBQ5I=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
click
|
|
colorama
|
|
hatchling
|
|
];
|
|
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "snowmachine" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python script that will make your terminal snow";
|
|
homepage = "https://github.com/sontek/snowmachine";
|
|
mainProgram = "snowmachine";
|
|
license = with licenses; [ bsd3 ];
|
|
maintainers = with maintainers; [
|
|
djanatyn
|
|
sontek
|
|
];
|
|
};
|
|
}
|