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
34 lines
801 B
Nix
34 lines
801 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchPypi,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "seashells";
|
|
version = "0.1.2";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-RBs28FC7f82DrxRcmvTP9nljVpm7tjrGuvr05l32hDM=";
|
|
};
|
|
|
|
build-system = with python3Packages; [ setuptools ];
|
|
|
|
doCheck = false; # there are no tests
|
|
pythonImportsCheck = [ "seashells" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://seashells.io/";
|
|
description = "Pipe command-line programs to seashells.io";
|
|
mainProgram = "seashells";
|
|
longDescription = ''
|
|
Official cient for seashells.io, which allows you to view
|
|
command-line output on the web, in real-time.
|
|
'';
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ deejayem ];
|
|
};
|
|
}
|