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: 71491d0afd56
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0e1969501346
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 24, 2018

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5948a5a View commit details
  2. Merge pull request #52759 from Izorkin/pythonPackages.pg8000

    pythonPackages.pg8000: fix build
    Ma27 authored Dec 24, 2018
    Copy the full SHA
    0e19695 View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/development/python-modules/pg8000/default.nix
5 changes: 3 additions & 2 deletions pkgs/development/python-modules/pg8000/default.nix
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, pytz
, six
}:

buildPythonPackage rec {
@@ -13,10 +14,10 @@ buildPythonPackage rec {
sha256 = "18192d90409a3037619ef17f1924e3fd9c7169c9c1b3277cec1982116ec2b6de";
};

propagatedBuildInputs = [ pytz ];
propagatedBuildInputs = [ pytz six ];

meta = with stdenv.lib; {
homepage = https://github.com/realazthat/aiopg8000;
homepage = https://github.com/mfenniak/pg8000;
description = "PostgreSQL interface library, for asyncio";
maintainers = with maintainers; [ garbas domenkozar ];
platforms = platforms.linux;