2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
44 lines
916 B
Nix
44 lines
916 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, setuptools
|
|
, sure
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "py-partiql-parser";
|
|
version = "0.4.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "getmoto";
|
|
repo = "py-partiql-parser";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-gxoBc7PjS4EQix38VNX6u9cwy4FCjENcUN1euOJJLCo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
sure
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"py_partiql_parser"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A tokenizer/parser/executor for the PartiQL-language";
|
|
homepage = "https://github.com/getmoto/py-partiql-parser";
|
|
changelog = "https://github.com/getmoto/py-partiql-parser/blob/${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ centromere ];
|
|
};
|
|
}
|