pythonPackages.vertica-python: init at 0.10.2

authored by

Farkas, Arnold and committed by
Jon
78c147c1 c71f63a3

+29
+27
pkgs/development/python-modules/vertica-python/default.nix
···
··· 1 + { lib, buildPythonPackage, fetchPypi, future, dateutil, six, pytest, mock, parameterized }: 2 + 3 + buildPythonPackage rec { 4 + pname = "vertica-python"; 5 + version = "0.10.2"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "c35d0e7ac8da2af47a65efc72d5d8351caa93e4829e549f229aa7e375593f896"; 10 + }; 11 + 12 + propagatedBuildInputs = [ future dateutil six ]; 13 + 14 + checkInputs = [ pytest mock parameterized ]; 15 + 16 + # Integration tests require an accessible Vertica db 17 + checkPhase = '' 18 + pytest --ignore vertica_python/tests/integration_tests 19 + ''; 20 + 21 + meta = with lib; { 22 + description = "Native Python client for Vertica database"; 23 + homepage = "https://github.com/vertica/vertica-python"; 24 + license = licenses.asl20; 25 + maintainers = [ maintainers.arnoldfarkas ]; 26 + }; 27 + }
+2
pkgs/top-level/python-packages.nix
··· 5720 5721 vega_datasets = callPackage ../development/python-modules/vega_datasets { }; 5722 5723 virtkey = callPackage ../development/python-modules/virtkey { 5724 inherit (pkgs) pkgconfig; 5725 };
··· 5720 5721 vega_datasets = callPackage ../development/python-modules/vega_datasets { }; 5722 5723 + vertica-python = callPackage ../development/python-modules/vertica-python { }; 5724 + 5725 virtkey = callPackage ../development/python-modules/virtkey { 5726 inherit (pkgs) pkgconfig; 5727 };