python312Packages.pyzx: init at 0.8.0
This commit is contained in:
parent
b7d9ab22ad
commit
1bb54f39c2
67
pkgs/development/python-modules/pyzx/default.nix
Normal file
67
pkgs/development/python-modules/pyzx/default.nix
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
buildPythonPackage,
|
||||||
|
pythonOlder,
|
||||||
|
fetchFromGitHub,
|
||||||
|
pythonRelaxDepsHook,
|
||||||
|
pytestCheckHook,
|
||||||
|
setuptools,
|
||||||
|
ipywidgets,
|
||||||
|
lark,
|
||||||
|
numpy,
|
||||||
|
pyperclip,
|
||||||
|
tqdm,
|
||||||
|
typing-extensions,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyzx";
|
||||||
|
version = "0.8.0";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "zxcalc";
|
||||||
|
repo = "pyzx";
|
||||||
|
rev = "refs/tags/v${version}";
|
||||||
|
hash = "sha256-4yc4P2v2L/F/A1A9z41ow2KA0aUA+3SJyC+wyMWzhwM=";
|
||||||
|
};
|
||||||
|
|
||||||
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
ipywidgets
|
||||||
|
lark
|
||||||
|
numpy
|
||||||
|
pyperclip
|
||||||
|
tqdm
|
||||||
|
typing-extensions
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonRelaxDeps = [ "ipywidgets" ];
|
||||||
|
|
||||||
|
nativeCheckInputs = [ pytestCheckHook ];
|
||||||
|
disabledTestPaths = [
|
||||||
|
# too expensive, and print results instead of reporting failures:
|
||||||
|
"tests/long_scalar_test.py"
|
||||||
|
"tests/long_test.py"
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"pyzx"
|
||||||
|
"pyzx.circuit"
|
||||||
|
"pyzx.graph"
|
||||||
|
"pyzx.routing"
|
||||||
|
"pyzx.local_search"
|
||||||
|
"pyzx.scripts"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Library for quantum circuit rewriting and optimisation using the ZX-calculus";
|
||||||
|
homepage = "https://github.com/zxcalc/pyzx";
|
||||||
|
changelog = "https://github.com/zxcalc/pyzx/blob/${src.rev}/CHANGELOG.md";
|
||||||
|
license = lib.licenses.asl20;
|
||||||
|
maintainers = with lib.maintainers; [ bcdarwin ];
|
||||||
|
};
|
||||||
|
}
|
@ -13312,6 +13312,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
pyzmq = callPackage ../development/python-modules/pyzmq { };
|
pyzmq = callPackage ../development/python-modules/pyzmq { };
|
||||||
|
|
||||||
|
pyzx = callPackage ../development/python-modules/pyzx { };
|
||||||
|
|
||||||
qbittorrent-api = callPackage ../development/python-modules/qbittorrent-api { };
|
qbittorrent-api = callPackage ../development/python-modules/qbittorrent-api { };
|
||||||
|
|
||||||
qasync = callPackage ../development/python-modules/qasync { };
|
qasync = callPackage ../development/python-modules/qasync { };
|
||||||
|
Loading…
Reference in New Issue
Block a user