Merge pull request #193455 from r-ryantm/auto-update/python3.9-snowflake-sqlalchemy
python39Packages.snowflake-sqlalchemy: 1.4.1 -> 1.4.2
This commit is contained in:
commit
f55c22ef4f
1 changed files with 13 additions and 6 deletions
|
@ -1,18 +1,22 @@
|
||||||
{ buildPythonPackage
|
{ lib
|
||||||
, lib
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, six
|
, six
|
||||||
, snowflake-connector-python
|
, snowflake-connector-python
|
||||||
, sqlalchemy
|
, sqlalchemy
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "snowflake-sqlalchemy";
|
pname = "snowflake-sqlalchemy";
|
||||||
version = "1.4.1";
|
version = "1.4.2";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-dJK1biZ6rEpS4kTncfJzHjBLktDZSsqvSGekbmfhves=";
|
hash = "sha256-zKWDQSd8G1H+EFMYHHSVyAtJNxZ6+z1rkESi5dsVpVc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -23,11 +27,14 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
# Pypi does not include tests
|
# Pypi does not include tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
pythonImportsCheck = [ "snowflake.sqlalchemy" ];
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"snowflake.sqlalchemy"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Snowflake SQLAlchemy Dialect";
|
description = "Snowflake SQLAlchemy Dialect";
|
||||||
homepage = "https://www.snowflake.net/";
|
homepage = "https://github.com/snowflakedb/snowflake-sqlalchemy";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = [ ];
|
maintainers = [ ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue