Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #47739 from r-ryantm/auto-update/pgcli

pgcli: 1.10.3 -> 1.11.0

authored by

Jörg Thalheim and committed by
GitHub
13c300df 38edcbd9

+2 -2
+2 -2
pkgs/development/tools/database/pgcli/default.nix
··· 2 2 3 3 pythonPackages.buildPythonApplication rec { 4 4 name = "pgcli-${version}"; 5 - version = "1.10.3"; 5 + version = "1.11.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "dbcli"; 9 9 repo = "pgcli"; 10 10 rev = "v${version}"; 11 - sha256 = "1qcbv2w036l0gc0li3jpa6amxzqmhv8d1q6wv4pfh0wvl17hqv9r"; 11 + sha256 = "01qcvl0iwabinq3sb4340js8v3sbwkbxi64sg4xy76wj8xr6kgsk"; 12 12 }; 13 13 14 14 buildInputs = with pythonPackages; [ pytest mock ];