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/pyqldb/default.nix

32 lines
805 B

{ lib, buildPythonPackage, fetchFromGitHub, boto3, amazon-ion, ionhash, pytestCheckHook }:
buildPythonPackage rec {
pname = "pyqldb";
version = "3.2.2";
src = fetchFromGitHub {
owner = "awslabs";
repo = "amazon-qldb-driver-python";
rev = "v${version}";
sha256 = "sha256-TKf43+k428h8T6ye6mJrnK9D4J1xpIu0QacM7lWJF7w=";
};
propagatedBuildInputs = [ boto3 amazon-ion ionhash ];
checkInputs = [ 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 ];
};
}