2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
lib,
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2024-04-21 15:54:59 +00:00
|
|
|
pname = "parsley";
|
2020-04-24 23:36:52 +00:00
|
|
|
version = "1.3";
|
|
|
|
src = fetchPypi {
|
2024-04-21 15:54:59 +00:00
|
|
|
pname = "Parsley";
|
|
|
|
inherit version;
|
2020-04-24 23:36:52 +00:00
|
|
|
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";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Parser generator library based on OMeta, and other useful parsing tools";
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with maintainers; [ seppeljordan ];
|
|
|
|
};
|
|
|
|
}
|