Merge pull request #88696 from marsam/update-pglast

pythonPackages.pglast: 1.10 -> 1.11
This commit is contained in:
Mario Rodas 2020-05-23 15:28:12 -05:00 committed by GitHub
commit bd4ac1398a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,7 @@
, fetchPypi , fetchPypi
, isPy3k , isPy3k
, pythonOlder , pythonOlder
, setuptools
, aenum , aenum
, pytest , pytest
, pytestcov , pytestcov
@ -10,16 +11,16 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pglast"; pname = "pglast";
version = "1.10"; version = "1.11";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "a26ba77127b363446955e8a5317b3194defb1c1bb9d2ed5e7d4830fd4f066d97"; sha256 = "8463d60b9065daf26e3c0fa6e7515d2a4594847ab417be018858832a475105f1";
}; };
disabled = !isPy3k; disabled = !isPy3k;
propagatedBuildInputs = lib.optionals (pythonOlder "3.6") [ aenum ]; propagatedBuildInputs = [ setuptools ] ++ lib.optionals (pythonOlder "3.6") [ aenum ];
checkInputs = [ pytest pytestcov ]; checkInputs = [ pytest pytestcov ];