56 lines
1.4 KiB
Nix
56 lines
1.4 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
|
|
# Check inputs
|
|
, pytestCheckHook
|
|
, networkx
|
|
, numpy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "retworkx";
|
|
version = "0.8.0";
|
|
format = "pyproject";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Qiskit";
|
|
repo = "retworkx";
|
|
rev = version;
|
|
sha256 = "0plpri6a3d6f1000kmcah9066vq2i37d14bdf8sm96493fhpqhrd";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
name = "${pname}-${version}";
|
|
hash = "sha256-+k779gmge8wDdoZrWn9ND47kUqt7pqe75Zuj2Byfefo=";
|
|
};
|
|
|
|
nativeBuildInputs = with rustPlatform; [ cargoSetupHook maturinBuildHook ];
|
|
|
|
# Needed b/c need to check AFTER python wheel is installed (using Rust Build, not buildPythonPackage)
|
|
doCheck = false;
|
|
doInstallCheck = true;
|
|
|
|
installCheckInputs = [ pytestCheckHook networkx numpy ];
|
|
|
|
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 ];
|
|
};
|
|
}
|