about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorDrew Risinger <drewrisinger@users.noreply.github.com>2020-01-28 17:47:21 -0500
committerJon <jonringer@users.noreply.github.com>2020-04-07 18:41:16 -0700
commit42a1271047cf8915069e2a71ed557e352bce02b1 (patch)
tree0bf2a7810039d05f82b63056c3eeeb12f9800d5e /pkgs/development/python-modules
parent201aacce154fcbcc1e2d1d5168b9a86bb6291ec1 (diff)
downloadnixlib-42a1271047cf8915069e2a71ed557e352bce02b1.tar
nixlib-42a1271047cf8915069e2a71ed557e352bce02b1.tar.gz
nixlib-42a1271047cf8915069e2a71ed557e352bce02b1.tar.bz2
nixlib-42a1271047cf8915069e2a71ed557e352bce02b1.tar.lz
nixlib-42a1271047cf8915069e2a71ed557e352bce02b1.tar.xz
nixlib-42a1271047cf8915069e2a71ed557e352bce02b1.tar.zst
nixlib-42a1271047cf8915069e2a71ed557e352bce02b1.zip
pythonPackages.IBMQuantumExperience: remove deprecated package
Package was deprecated, and effectively replaced by
pythonPackages.qiskit-ibmq-provider.
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/ibmquantumexperience/default.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/pkgs/development/python-modules/ibmquantumexperience/default.nix b/pkgs/development/python-modules/ibmquantumexperience/default.nix
deleted file mode 100644
index dcf39dd24f02..000000000000
--- a/pkgs/development/python-modules/ibmquantumexperience/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, requests
-, requests_ntlm
-}:
-
-buildPythonPackage rec {
-  pname = "IBMQuantumExperience";
-  version = "2.0.4";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "0szn743sbm3cs80982cf4994c1xcg6iz5xkhdbpm1kfv5qn1phja";
-  };
-
-  propagatedBuildInputs = [
-    requests
-    requests_ntlm
-  ];
-
-  # test requires an API token
-  doCheck = false;
-
-  meta = {
-    description = "A Python library for the Quantum Experience API";
-    homepage    = https://github.com/QISKit/qiskit-api-py;
-    license     = lib.licenses.asl20;
-    maintainers = with lib.maintainers; [
-      pandaman
-    ];
-  };
-}