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
26 lines
684 B
Nix
26 lines
684 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
lib,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "parsley";
|
|
version = "1.3";
|
|
format = "setuptools";
|
|
src = fetchPypi {
|
|
pname = "Parsley";
|
|
inherit version;
|
|
sha256 = "0hcd41bl07a8sx7nmx12p16xprnblc4phxkawwmmy78n8y6jfi4l";
|
|
};
|
|
# Tests fail although the package works just fine. Unfortunately
|
|
# the tests as run by the upstream CI server travis.org are broken.
|
|
doCheck = false;
|
|
meta = with lib; {
|
|
license = licenses.mit;
|
|
homepage = "https://launchpad.net/parsley";
|
|
description = "Parser generator library based on OMeta, and other useful parsing tools";
|
|
maintainers = with maintainers; [ seppeljordan ];
|
|
};
|
|
}
|