python3Packages.snowflake-sqlalchemy: propgate six

authored by Martin Weinelt and committed by Jonathan Ringer d588e9ac 418a929d

+4 -2
+4 -2
pkgs/development/python-modules/snowflake-sqlalchemy/default.nix
··· 1 { buildPythonPackage 2 , lib 3 , fetchPypi 4 , sqlalchemy 5 - , snowflake-connector-python 6 }: 7 8 buildPythonPackage rec { ··· 15 }; 16 17 propagatedBuildInputs = [ 18 sqlalchemy 19 - snowflake-connector-python 20 ]; 21 22 # Pypi does not include tests
··· 1 { buildPythonPackage 2 , lib 3 , fetchPypi 4 + , six 5 + , snowflake-connector-python 6 , sqlalchemy 7 }: 8 9 buildPythonPackage rec { ··· 16 }; 17 18 propagatedBuildInputs = [ 19 + six 20 + snowflake-connector-python 21 sqlalchemy 22 ]; 23 24 # Pypi does not include tests