nixpkgs/pkgs/development/python-modules/speg/default.nix
2023-09-09 12:24:51 +02:00

29 lines
602 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, speg
}:
buildPythonPackage rec {
pname = "speg";
version = "0.3";
src = fetchPypi {
inherit pname version;
hash = "sha256-EMvvR+Fo38YvFNtXXPHEKAN6K4gc7mw8/O2gQ5wkPnE=";
extension = "zip";
};
pythonImportsCheck = [ "speg" ];
# checks fail for seemingly spurious reasons
doCheck = false;
meta = with lib; {
description = "A PEG-based parser interpreter with memoization (in time)";
homepage = "https://github.com/avakar/speg";
license = with licenses; [ mit ];
maintainers = with maintainers; [ xworld21 ];
};
}