Files
nixpkgs/pkgs/development/python-modules/pyqldb/default.nix
T
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

34 lines
844 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, boto3, amazon-ion, ionhash, pytestCheckHook }:
buildPythonPackage rec {
pname = "pyqldb";
version = "3.2.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "awslabs";
repo = "amazon-qldb-driver-python";
rev = "refs/tags/v${version}";
hash = "sha256-TyIXvk3ZJn5J2SBFDTPJpSnGFOFheXIqR2daL5npOk8=";
};
propagatedBuildInputs = [ boto3 amazon-ion ionhash ];
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
export AWS_DEFAULT_REGION=us-east-1
'';
pytestFlagsArray = [ "tests/unit" ];
pythonImportsCheck = [ "pyqldb" ];
meta = with lib; {
description = "Python driver for Amazon QLDB";
homepage = "https://github.com/awslabs/amazon-qldb-driver-python";
license = licenses.asl20;
maintainers = [ maintainers.terlar ];
};
}