depot/third_party/nixpkgs/pkgs/development/python-modules/parsley/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

24 lines
659 B
Nix

{
buildPythonPackage,
fetchPypi,
lib,
}:
buildPythonPackage rec {
pname = "parsley";
version = "1.3";
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 ];
};
}