summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/qiskit-aer/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/qiskit-aer/default.nix')
-rw-r--r--pkgs/development/python-modules/qiskit-aer/default.nix55
1 files changed, 28 insertions, 27 deletions
diff --git a/pkgs/development/python-modules/qiskit-aer/default.nix b/pkgs/development/python-modules/qiskit-aer/default.nix
index 6f6f42f8fd76..7106f74578a3 100644
--- a/pkgs/development/python-modules/qiskit-aer/default.nix
+++ b/pkgs/development/python-modules/qiskit-aer/default.nix
@@ -1,32 +1,33 @@
-{ stdenv
-, lib
-, pythonOlder
-, buildPythonPackage
-, fetchFromGitHub
-, fetchpatch
+{
+ stdenv,
+ lib,
+ pythonOlder,
+ buildPythonPackage,
+ fetchFromGitHub,
+ fetchpatch,
# C Inputs
-, blas
-, catch2
-, cmake
-, cython
-, fmt
-, muparserx
-, ninja
-, nlohmann_json
-, spdlog
+ blas,
+ catch2,
+ cmake,
+ cython,
+ fmt,
+ muparserx,
+ ninja,
+ nlohmann_json,
+ spdlog,
# Python Inputs
-, cvxpy
-, numpy
-, pybind11
-, scikit-build
+ cvxpy,
+ numpy,
+ pybind11,
+ scikit-build,
# Check Inputs
-, pytestCheckHook
-, ddt
-, fixtures
-, pytest-timeout
-, qiskit-terra
-, setuptools
-, testtools
+ pytestCheckHook,
+ ddt,
+ fixtures,
+ pytest-timeout,
+ qiskit-terra,
+ setuptools,
+ testtools,
}:
buildPythonPackage rec {
@@ -69,7 +70,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
cvxpy
- cython # generates some cython files at runtime that need to be cython-ized
+ cython # generates some cython files at runtime that need to be cython-ized
numpy
pybind11
];