mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
81 lines
1.6 KiB
Nix
81 lines
1.6 KiB
Nix
{ lib
|
|
, pkgs
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, pytestCheckHook
|
|
, pytest-xdist
|
|
, fetchFromGitHub
|
|
, numpy
|
|
, pybind11
|
|
, cirq-core
|
|
, matplotlib
|
|
, networkx
|
|
, scipy
|
|
, setuptools
|
|
, wheel
|
|
, pandas
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "stim";
|
|
version = "1.9.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "quantumlib";
|
|
repo = "Stim";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-zXWdJjFkf74FCWxyVMF8dx0P8GmUkuHFxUo5wYNU2o0=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# asked to relax this in https://github.com/quantumlib/Stim/issues/623
|
|
substituteInPlace pyproject.toml \
|
|
--replace "pybind11==" "pybind11>="
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pybind11
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-xdist
|
|
|
|
cirq-core
|
|
matplotlib
|
|
networkx
|
|
scipy
|
|
pandas
|
|
];
|
|
|
|
meta = {
|
|
description = "A tool for high performance simulation and analysis of quantum stabilizer circuits, especially quantum error correction (QEC) circuits.";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ chrispattison ];
|
|
homepage = "https://github.com/quantumlib/stim";
|
|
};
|
|
|
|
pythonImportsCheck = [ "stim" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
disabledTestPaths = [
|
|
# No pymatching
|
|
"glue/sample/src/sinter/main_test.py"
|
|
"glue/sample/src/sinter/decoding_test.py"
|
|
"glue/sample/src/sinter/predict_test.py"
|
|
"glue/sample/src/sinter/collection_test.py"
|
|
"glue/sample/src/sinter/collection_work_manager.py"
|
|
"glue/sample/src/sinter/worker_test.py"
|
|
];
|
|
}
|