···1-{ lib,
2- fetchFromGitHub,
3- buildPythonPackage,
4- boto,
5- inflection,
6- pytest,
7- mock,
8- requests,
9- six,
10- urllib3 }:
11-12-buildPythonPackage rec {
13- pname = "qds_sdk";
14- version = "1.16.1";
15-16- # pypi does not contain tests, using github sources instead
17- src = fetchFromGitHub {
18- owner = "qubole";
19- repo = "qds-sdk-py";
20- rev = "V${version}";
21- sha256 = "05c7g63rcvvi4fgkcfsxh2a6hwlffbs18dhki222s5rpc49wi8zi";
22- };
23-24- propagatedBuildInputs = [
25- boto
26- inflection
27- requests
28- six
29- urllib3
30- ];
31-32- nativeCheckInputs = [ pytest mock ];
33- checkPhase = ''
34- py.test --disable-pytest-warnings tests
35- '';
36-37- meta = with lib; {
38- description = "A Python module that provides the tools you need to authenticate with, and use the Qubole Data Service API";
39- homepage = "https://github.com/qubole/qds-sdk-py";
40- license = licenses.asl20;
41- maintainers = with maintainers; [ shahrukh330 ];
42- };
43-}
···0000000000000000000000000000000000000000000
+1
pkgs/top-level/python-aliases.nix
···351 PyVirtualDisplay = pyvirtualdisplay; # added 2023-02-19
352 pywick = throw "pywick has been removed, since it is no longer maintained"; # added 2023-07-01
353 qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09
0354 Quandl = quandl; # added 2023-02-19
355 qiskit-aqua = throw "qiskit-aqua has been removed due to deprecation, with its functionality moved to different qiskit packages";
356 rabbitpy = throw "rabbitpy has been removed, since it is unmaintained and broken"; # added 2023-07-01
···351 PyVirtualDisplay = pyvirtualdisplay; # added 2023-02-19
352 pywick = throw "pywick has been removed, since it is no longer maintained"; # added 2023-07-01
353 qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09
354+ qds_sdk = qds-sdk; # added 2023-10-21
355 Quandl = quandl; # added 2023-02-19
356 qiskit-aqua = throw "qiskit-aqua has been removed due to deprecation, with its functionality moved to different qiskit packages";
357 rabbitpy = throw "rabbitpy has been removed, since it is unmaintained and broken"; # added 2023-07-01