forked from mirrors/nixpkgs
pythonPackages.pglast: 1.10 -> 1.11
This commit is contained in:
parent
29d57de301
commit
a1b69c2014
|
@ -3,6 +3,7 @@
|
|||
, fetchPypi
|
||||
, isPy3k
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, aenum
|
||||
, pytest
|
||||
, pytestcov
|
||||
|
@ -10,16 +11,16 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "pglast";
|
||||
version = "1.10";
|
||||
version = "1.11";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "a26ba77127b363446955e8a5317b3194defb1c1bb9d2ed5e7d4830fd4f066d97";
|
||||
sha256 = "8463d60b9065daf26e3c0fa6e7515d2a4594847ab417be018858832a475105f1";
|
||||
};
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
propagatedBuildInputs = lib.optionals (pythonOlder "3.6") [ aenum ];
|
||||
propagatedBuildInputs = [ setuptools ] ++ lib.optionals (pythonOlder "3.6") [ aenum ];
|
||||
|
||||
checkInputs = [ pytest pytestcov ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue