Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: efe35454d4c4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bd4ac1398ab7
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on May 23, 2020

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    veehaitch Vincent Haupert
    Copy the full SHA
    a1b69c2 View commit details
  2. Merge pull request #88696 from marsam/update-pglast

    pythonPackages.pglast: 1.10 -> 1.11
    marsam authored May 23, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    veehaitch Vincent Haupert
    Copy the full SHA
    bd4ac13 View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/python-modules/pglast/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/python-modules/pglast/default.nix
Original file line number Diff line number Diff line change
@@ -3,23 +3,24 @@
, fetchPypi
, isPy3k
, pythonOlder
, setuptools
, aenum
, pytest
, pytestcov
}:

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 ];