blob: 7427e76591e0ed1d2b642e4f5596c2fcf8cae8fe (
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
30
31
32
33
34
35
36
37
38
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
hatchling,
sure,
}:
buildPythonPackage rec {
pname = "py-partiql-parser";
version = "0.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "getmoto";
repo = "py-partiql-parser";
tag = version;
hash = "sha256-2qCGNRoeMRe5fPzoWFD9umZgUDW6by7jNfO/BByQGwE=";
};
build-system = [ hatchling ];
nativeCheckInputs = [
pytestCheckHook
sure
];
pythonImportsCheck = [ "py_partiql_parser" ];
meta = {
description = "Tokenizer/parser/executor for the PartiQL-language";
homepage = "https://github.com/getmoto/py-partiql-parser";
changelog = "https://github.com/getmoto/py-partiql-parser/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ centromere ];
};
}
|