python37Packages.pq: 1.8.2 -> 1.9.0

This commit is contained in:
R. RyanTM 2020-10-15 14:14:20 +00:00 committed by Jon
parent 41ba16ba71
commit 324bce22a7

View File

@ -6,12 +6,12 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pq"; pname = "pq";
version = "1.8.2"; version = "1.9.0";
disabled = isPy27; disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "f54143844e73f4182532e68548dee447dd78dd00310a087e8cdee756d476a173"; sha256 = "c664ee3a9a25efcb583e3d1d797588fb7c2fb5096220689eec78a7946b01b5ff";
}; };
# tests require running postgresql cluster # tests require running postgresql cluster
@ -20,7 +20,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "PQ is a transactional queue for PostgreSQL"; description = "PQ is a transactional queue for PostgreSQL";
homepage = https://github.com/malthe/pq/; homepage = "https://github.com/malthe/pq/";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.costrouc ]; maintainers = [ maintainers.costrouc ];
}; };