lol

Merge pull request #259837 from marsam/update-pglast

python310Packages.pglast: 5.4 -> 5.5

authored by

Mario Rodas and committed by
GitHub
77fe025f 1ebdfa7d

+8 -3
+8 -3
pkgs/development/python-modules/pglast/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pglast"; 11 - version = "5.4"; 11 + version = "5.5"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-fyLvgaYHmTh9OaWXkuenKmNTHCVYFln/FbN+5u2a9+8="; 18 + hash = "sha256-yz6Q+Vt7ZuT9NaxuQQA+BH7U6Efaim7No6GJmnOQo1o="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ ··· 37 37 pytest 38 38 ''; 39 39 40 + pythonImportsCheck = [ 41 + "pglast" 42 + "pglast.parser" 43 + ]; 44 + 40 45 meta = with lib; { 41 46 homepage = "https://github.com/lelit/pglast"; 42 47 description = "PostgreSQL Languages AST and statements prettifier"; 43 - changelog = "https://github.com/lelit/pglast/raw/v${version}/CHANGES.rst"; 48 + changelog = "https://github.com/lelit/pglast/blob/v${version}/CHANGES.rst"; 44 49 license = licenses.gpl3Plus; 45 50 maintainers = with maintainers; [ marsam ]; 46 51 mainProgram = "pgpp";