python310Packages.pyathena: 2.5.2 -> 2.9.1

main
Fabian Affolter 2 years ago committed by Jonathan Ringer
parent 269e8cfefb
commit 141824ed0d
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
  1. 12
      pkgs/development/python-modules/pyathena/default.nix

@ -1,16 +1,16 @@
{ lib
, buildPythonPackage
, fetchPypi
, boto3
, botocore
, buildPythonPackage
, fetchPypi
, pandas
, tenacity
, pythonOlder
, tenacity
}:
buildPythonPackage rec {
pname = "pyathena";
version = "2.5.2";
version = "2.9.1";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -18,7 +18,7 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "PyAthena";
inherit version;
sha256 = "sha256-vjoK6lEitvd5vqSEE/ael8q00O05lquKIviFK/bPlVQ=";
hash = "sha256-b1JdJhSe4ezKN4afZexwc/YT7OM9nIXHK7ca6nYRGnY=";
};
propagatedBuildInputs = [
@ -38,9 +38,9 @@ buildPythonPackage rec {
];
meta = with lib; {
description = "Python DB API 2.0 (PEP 249) client for Amazon Athena";
homepage = "https://github.com/laughingman7743/PyAthena/";
license = licenses.mit;
description = "Python DB API 2.0 (PEP 249) client for Amazon Athena";
maintainers = with maintainers; [ turion ];
};
}

Loading…
Cancel
Save