pythonPackages.qds_sdk: 1.12.0 -> 1.15.2

This commit is contained in:
Tina Bu 2020-07-31 09:41:39 -07:00 committed by Jon
parent 5799e30813
commit 28c06140be

View File

@ -11,29 +11,29 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "qds_sdk"; pname = "qds_sdk";
version = "1.12.0"; version = "1.15.2";
# pypi does not contain tests, using github sources instead # pypi does not contain tests, using github sources instead
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "qubole"; owner = "qubole";
repo = "qds-sdk-py"; repo = "qds-sdk-py";
rev = "V${version}"; rev = "V${version}";
sha256 = "18xhvlcfki8llv7fw2r5yfk20zds3gr78b4klwm9mkvhlhwds9rx"; sha256 = "0xxg9s0y6fz7vb1kab4q93q7ryi71z8x6q9qspm6s506yr3mc67l";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
boto boto
inflection inflection
requests requests
six six
urllib3 urllib3
]; ];
checkInputs = [ pytest mock ]; checkInputs = [ pytest mock ];
checkPhase = '' checkPhase = ''
py.test --disable-pytest-warnings tests py.test --disable-pytest-warnings tests
''; '';
meta = with lib; { meta = with lib; {
description = "A Python module that provides the tools you need to authenticate with, and use the Qubole Data Service API"; description = "A Python module that provides the tools you need to authenticate with, and use the Qubole Data Service API";
homepage = "https://github.com/qubole/qds-sdk-py"; homepage = "https://github.com/qubole/qds-sdk-py";