Unverified Commit 17a68959 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #225812 from ChrisPattison/rustworkx

parents 70c1240b 3d95de61
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
, numpy
, psutil
, qiskit-terra
, retworkx
, rustworkx
, scikit-learn
, scipy
, withPyscf ? false
@@ -37,7 +37,7 @@ buildPythonPackage rec {
    numpy
    psutil
    qiskit-terra
    retworkx
    rustworkx
    scikit-learn
    scipy
  ] ++ lib.optional withPyscf pyscf;
+2 −2
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
, psutil
, python-constraint
, python-dateutil
, retworkx
, rustworkx
, scipy
, scikit-quant ? null
, setuptools-rust
@@ -85,7 +85,7 @@ buildPythonPackage rec {
    psutil
    python-constraint
    python-dateutil
    retworkx
    rustworkx
    scipy
    scikit-quant
    stevedore
+0 −67
Original line number Diff line number Diff line
{ lib
, stdenv
, buildPythonPackage
, pythonOlder
, rustPlatform
, fetchFromGitHub
, libiconv
  # Check inputs
, pytestCheckHook
, fixtures
, graphviz
, matplotlib
, networkx
, numpy
, pydot
}:

buildPythonPackage rec {
  pname = "retworkx";
  version = "0.11.0";
  format = "pyproject";
  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "Qiskit";
    repo = "retworkx";
    rev = version;
    hash = "sha256-o3XPMTaiFH5cBtyqtW650wiDBElLvCmERr2XwwdPO1c=";
  };

  cargoDeps = rustPlatform.fetchCargoTarball {
    inherit src;
    name = "${pname}-${version}";
    hash = "sha256-Zhk4m+HNtimhPWfiBLi9dqJ0fp2D8d0u9k6ROG0/jBo=";
  };

  nativeBuildInputs = with rustPlatform; [ cargoSetupHook maturinBuildHook ];

  buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];

  pythonImportsCheck = [ "retworkx" ];
  nativeCheckInputs = [
    pytestCheckHook
    fixtures
    graphviz
    matplotlib
    networkx
    numpy
    pydot
  ];

  preCheck = ''
    export TESTDIR=$(mktemp -d)
    cp -r tests/ $TESTDIR
    pushd $TESTDIR
  '';
  postCheck = "popd";

  meta = with lib; {
    description = "A python graph library implemented in Rust.";
    homepage = "https://retworkx.readthedocs.io/en/latest/index.html";
    downloadPage = "https://github.com/Qiskit/retworkx/releases";
    changelog = "https://github.com/Qiskit/retworkx/releases/tag/${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ drewrisinger ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -251,6 +251,7 @@ mapAliases ({
  Quandl = quandl; # added 2023-02-19
  qiskit-aqua = throw "qiskit-aqua has been removed due to deprecation, with its functionality moved to different qiskit packages";
  rdflib-jsonld = throw "rdflib-jsonld is not compatible with rdflib 6"; # added 2021-11-05
  retworkx = rustworkx; # added 2023-05-14
  repeated_test = repeated-test; # added 2022-11-15
  requests_oauthlib = requests-oauthlib; # added 2022-02-12
  requests_toolbelt = requests-toolbelt; # added 2017-09-26
+0 −2
Original line number Diff line number Diff line
@@ -10470,8 +10470,6 @@ self: super: with self; {

  returns = callPackage ../development/python-modules/returns { };

  retworkx = callPackage ../development/python-modules/retworkx { };

  rfc3339 = callPackage ../development/python-modules/rfc3339 { };

  rfc3339-validator = callPackage ../development/python-modules/rfc3339-validator { };