Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, requests 5, requests_ntlm 6}: 7 8buildPythonPackage rec { 9 pname = "IBMQuantumExperience"; 10 version = "2.0.4"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "0szn743sbm3cs80982cf4994c1xcg6iz5xkhdbpm1kfv5qn1phja"; 15 }; 16 17 propagatedBuildInputs = [ 18 requests 19 requests_ntlm 20 ]; 21 22 # test requires an API token 23 doCheck = false; 24 25 meta = { 26 description = "A Python library for the Quantum Experience API"; 27 homepage = https://github.com/QISKit/qiskit-api-py; 28 license = lib.licenses.asl20; 29 maintainers = with lib.maintainers; [ 30 pandaman 31 ]; 32 }; 33}