nixpkgs/pkgs/development/python-modules/qiskit/default.nix

64 lines
1.1 KiB
Nix
Raw Normal View History

2018-05-12 06:49:14 +00:00
{ stdenv
, isPy3k
, buildPythonPackage
, fetchPypi
, numpy
, scipy
, sympy
, matplotlib
, networkx
, ply
, pillow
, cffi
, requests
, requests_ntlm
, IBMQuantumExperience
2018-07-03 05:40:09 +00:00
, jsonschema
, psutil
2018-05-12 06:49:14 +00:00
, cmake
, llvmPackages
}:
buildPythonPackage rec {
pname = "qiskit";
2019-02-14 07:37:29 +00:00
version = "0.7.2";
2018-05-12 06:49:14 +00:00
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:29 +00:00
sha256 = "08c7f7ccd32a5cb0c0a0c4f63d6ff068d659c9c0b51e2df6f2054e586e8bfa19";
2018-05-12 06:49:14 +00:00
};
buildInputs = [ cmake ]
++ stdenv.lib.optional stdenv.isDarwin llvmPackages.openmp;
propagatedBuildInputs = [
numpy
matplotlib
networkx
ply
scipy
sympy
pillow
cffi
requests
requests_ntlm
IBMQuantumExperience
2018-07-03 05:40:09 +00:00
jsonschema
psutil
2018-05-12 06:49:14 +00:00
];
# Pypi's tarball doesn't contain tests
doCheck = false;
meta = {
description = "Quantum Software Development Kit for writing quantum computing experiments, programs, and applications";
2018-07-03 05:40:09 +00:00
homepage = https://github.com/QISKit/qiskit-terra;
2018-05-12 06:49:14 +00:00
license = stdenv.lib.licenses.asl20;
maintainers = with stdenv.lib.maintainers; [
pandaman
];
};
}