Merge pull request #261162 from r-ryantm/auto-update/python310Packages.py-partiql-parser
python310Packages.py-partiql-parser: 0.3.7 -> 0.3.8
This commit is contained in:
commit
f3159a8409
1 changed files with 7 additions and 9 deletions
|
@ -1,22 +1,24 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, nix-update-script
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, sure
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "py-partiql-parser";
|
||||
version = "0.3.7";
|
||||
format = "pyproject";
|
||||
version = "0.3.8";
|
||||
pyproject = true;
|
||||
|
||||
disable = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "getmoto";
|
||||
repo = "py-partiql-parser";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-RObJSvkqD3T8i470po/CayGC/ae8J6rFQROsrQ1EAGs=";
|
||||
hash = "sha256-uIO06RRuUuE9qCEg/tTcn68i7vaFAAeFhxdxW9WAbuw=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
@ -32,12 +34,8 @@ buildPythonPackage rec {
|
|||
"py_partiql_parser"
|
||||
];
|
||||
|
||||
passthru = {
|
||||
updateScript = nix-update-script { };
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "A tokenizer/parser/executor for the PartiQL-language, in Python";
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue