blob: 46116244a9e133ce374f8ab83011d6cbbbabf06f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "speg";
version = "0.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-EMvvR+Fo38YvFNtXXPHEKAN6K4gc7mw8/O2gQ5wkPnE=";
extension = "zip";
};
pythonImportsCheck = [ "speg" ];
# checks fail for seemingly spurious reasons
doCheck = false;
meta = {
description = "PEG-based parser interpreter with memoization (in time)";
homepage = "https://github.com/avakar/speg";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ xworld21 ];
};
}
|