My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/pg8000/default.nix

30 lines
578 B

{ lib, stdenv
, buildPythonPackage
, fetchPypi
, scramp
, isPy3k
, passlib
}:
buildPythonPackage rec {
pname = "pg8000";
version = "1.16.6";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "8fc1e6a62ccb7c9830f1e7e9288e2d20eaf373cc8875b5c55b7d5d9b7717be91";
};
propagatedBuildInputs = [ passlib scramp ];
meta = with lib; {
homepage = "https://github.com/tlocke/pg8000";
description = "PostgreSQL interface library, for asyncio";
maintainers = with maintainers; [ domenkozar ];
platforms = platforms.unix;
};
}