mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
45 lines
990 B
Nix
45 lines
990 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
six,
|
|
snowflake-connector-python,
|
|
sqlalchemy,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "snowflake-sqlalchemy";
|
|
version = "1.6.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-eSzekowNHTBxS4iwQE3oHtKXp3RcvMJT3NqXP2V1k4I=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
snowflake-connector-python
|
|
sqlalchemy
|
|
];
|
|
|
|
# Pypi does not include tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "snowflake.sqlalchemy" ];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/snowflakedb/snowflake-sqlalchemy/blob/v${version}/DESCRIPTION.md";
|
|
description = "Snowflake SQLAlchemy Dialect";
|
|
homepage = "https://github.com/snowflakedb/snowflake-sqlalchemy";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
|
|
# https://github.com/snowflakedb/snowflake-sqlalchemy/issues/380
|
|
broken = versionAtLeast sqlalchemy.version "2";
|
|
};
|
|
}
|