about summary refs log tree commit diff
path: root/pkgs/development/python-modules/qds_sdk
diff options
context:
space:
mode:
authorTina Bu <tina.bu@keeptruckin.com>2020-07-31 09:41:39 -0700
committerJon <jonringer@users.noreply.github.com>2020-07-31 10:04:45 -0700
commit28c06140bef0753bc6c1855facae52ff4c5820d9 (patch)
tree0da2fb2d2a97d41b05d3b37201589c821ddcb518 /pkgs/development/python-modules/qds_sdk
parent5799e30813a6ecd58927d7ec6f458e4263f0e030 (diff)
pythonPackages.qds_sdk: 1.12.0 -> 1.15.2
Diffstat (limited to 'pkgs/development/python-modules/qds_sdk')
-rw-r--r--pkgs/development/python-modules/qds_sdk/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/qds_sdk/default.nix b/pkgs/development/python-modules/qds_sdk/default.nix
index 7b4cfa501ddf8..56b3f36c367c8 100644
--- a/pkgs/development/python-modules/qds_sdk/default.nix
+++ b/pkgs/development/python-modules/qds_sdk/default.nix
@@ -11,29 +11,29 @@
 
 buildPythonPackage rec {
   pname = "qds_sdk";
-  version = "1.12.0";
+  version = "1.15.2";
 
   # pypi does not contain tests, using github sources instead
   src = fetchFromGitHub {
     owner = "qubole";
     repo = "qds-sdk-py";
     rev = "V${version}";
-    sha256 = "18xhvlcfki8llv7fw2r5yfk20zds3gr78b4klwm9mkvhlhwds9rx";
+    sha256 = "0xxg9s0y6fz7vb1kab4q93q7ryi71z8x6q9qspm6s506yr3mc67l";
   };
 
-  propagatedBuildInputs = [ 
+  propagatedBuildInputs = [
     boto
     inflection
     requests
-    six 
-    urllib3 
+    six
+    urllib3
   ];
 
   checkInputs = [ pytest mock ];
   checkPhase = ''
     py.test --disable-pytest-warnings tests
   '';
- 
+
   meta = with lib; {
     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";