Merge pull request #312150 from r-ryantm/auto-update/python311Packages.pgspecial

python311Packages.pgspecial: 2.1.1 -> 2.1.2

authored by Matthias Beyer and committed by GitHub 45f0fad6 317d591d

+21 -13
+21 -13
pkgs/development/python-modules/pgspecial/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , pytestCheckHook 5 - , psycopg 6 - , click 7 - , configobj 8 - , sqlparse 9 }: 10 11 buildPythonPackage rec { 12 pname = "pgspecial"; 13 - version = "2.1.1"; 14 - format = "setuptools"; 15 16 src = fetchPypi { 17 inherit pname version; 18 - hash = "sha256-o4I5zZYfrDPObaNcRm11istvlCkBWY19905bgv5vVjY="; 19 }; 20 21 - propagatedBuildInputs = [ 22 click 23 sqlparse 24 psycopg ··· 30 ]; 31 32 disabledTests = [ 33 - # requires a postgresql server 34 "test_slash_dp_pattern_schema" 35 ]; 36 37 meta = with lib; { 38 description = "Meta-commands handler for Postgres Database"; 39 homepage = "https://github.com/dbcli/pgspecial"; 40 license = licenses.bsd3; 41 maintainers = with maintainers; [ ]; 42 };
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + click, 5 + configobj, 6 + fetchPypi, 7 + psycopg, 8 + pytestCheckHook, 9 + pythonOlder, 10 + setuptools, 11 + sqlparse, 12 }: 13 14 buildPythonPackage rec { 15 pname = "pgspecial"; 16 + version = "2.1.2"; 17 + pyproject = true; 18 + 19 + disabled = pythonOlder "3.7"; 20 21 src = fetchPypi { 22 inherit pname version; 23 + hash = "sha256-8EGeGzt4+zpy/jtUb2eIpxIJFTLVmf51k7X27lWoj4c="; 24 }; 25 26 + build-system = [ setuptools ]; 27 + 28 + dependencies = [ 29 click 30 sqlparse 31 psycopg ··· 37 ]; 38 39 disabledTests = [ 40 + # Test requires a Postgresql server 41 "test_slash_dp_pattern_schema" 42 ]; 43 44 meta = with lib; { 45 description = "Meta-commands handler for Postgres Database"; 46 homepage = "https://github.com/dbcli/pgspecial"; 47 + changelog = "https://github.com/dbcli/pgspecial/releases/tag/v${version}"; 48 license = licenses.bsd3; 49 maintainers = with maintainers; [ ]; 50 };