python310Packages.rustworkx: add missing testtools dependency

This commit is contained in:
Theodore Ni
2023-07-28 12:15:31 +02:00
committed by Martin Weinelt
parent b12b1ae9e1
commit 3ba65a3719
@@ -7,6 +7,7 @@
, numpy
, fixtures
, networkx
, testtools
, libiconv
, stdenv
, lib
@@ -37,12 +38,12 @@ buildPythonPackage rec {
buildInputs = [ numpy ] ++ lib.optionals stdenv.isDarwin [ libiconv ];
checkInputs = [ fixtures networkx ];
checkInputs = [ fixtures networkx testtools ];
pythonImportsCheck = [ "rustworkx" ];
meta = with lib; {
description = "A high performance Python graph library implemented in Rust.";
description = "A high performance Python graph library implemented in Rust";
homepage = "https://github.com/Qiskit/rustworkx";
license = licenses.asl20;
maintainers = with maintainers; [ raitobezarius ];