0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python: editorconfig fixes

This commit is contained in:
zowoq 2020-08-25 12:07:09 +10:00 committed by Jon
parent 1c2ebdc5a3
commit 0cff30bb44
87 changed files with 149 additions and 157 deletions

View file

@ -3,21 +3,21 @@
buildPythonPackage rec {
pname = "vertica-python";
version = "0.11.0";
src = fetchPypi {
inherit pname version;
sha256 = "cceb39d081b8d1628956205642e740a9fabcfd2c6ecd982c51134fba8215d0bd";
};
propagatedBuildInputs = [ future dateutil six ];
checkInputs = [ pytest mock parameterized ];
# Integration tests require an accessible Vertica db
checkPhase = ''
pytest --ignore vertica_python/tests/integration_tests
'';
meta = with lib; {
description = "Native Python client for Vertica database";
homepage = "https://github.com/vertica/vertica-python";