mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python3Packages.stim: init at 1.9.0
This commit is contained in:
parent
1805216b8e
commit
4ad43e6b47
67
pkgs/development/python-modules/stim/default.nix
Normal file
67
pkgs/development/python-modules/stim/default.nix
Normal file
@ -0,0 +1,67 @@
|
||||
{ lib
|
||||
, pkgs
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, pytestCheckHook
|
||||
, pytest-xdist
|
||||
, fetchFromGitHub
|
||||
, numpy
|
||||
, pybind11
|
||||
, cirq-core
|
||||
, matplotlib
|
||||
, networkx
|
||||
, scipy
|
||||
, 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}";
|
||||
sha256 = "sha256-zXWdJjFkf74FCWxyVMF8dx0P8GmUkuHFxUo5wYNU2o0=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
numpy
|
||||
pybind11
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
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"
|
||||
];
|
||||
}
|
@ -10339,6 +10339,8 @@ in {
|
||||
|
||||
stickytape = callPackage ../development/python-modules/stickytape { };
|
||||
|
||||
stim = callPackage ../development/python-modules/stim { };
|
||||
|
||||
stm32loader = callPackage ../development/python-modules/stm32loader { };
|
||||
|
||||
stone = callPackage ../development/python-modules/stone { };
|
||||
|
Loading…
Reference in New Issue
Block a user