1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/pg8000/default.nix
2022-02-06 18:55:36 +01:00

41 lines
744 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, passlib
, pythonOlder
, scramp
}:
buildPythonPackage rec {
pname = "pg8000";
version = "1.24.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-BsawsGjQfONm97ztrfdqC12mph+GMCyMr/aQt/xd/ts=";
};
propagatedBuildInputs = [
passlib
scramp
];
# Tests require a running PostgreSQL instance
doCheck = false;
pythonImportsCheck = [
"pg8000"
];
meta = with lib; {
description = "Python driver for PostgreSQL";
homepage = "https://github.com/tlocke/pg8000";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ domenkozar ];
platforms = platforms.unix;
};
}