biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / cirq-aqt / default.nix
blob6e20f84d26e6f72a387e6b6b57664425cbf95eed
2   buildPythonPackage,
3   cirq-core,
4   requests,
5   pytestCheckHook,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "cirq-aqt";
11   pyproject = true;
12   inherit (cirq-core) version src meta;
14   sourceRoot = "${src.name}/${pname}";
16   postPatch = ''
17     substituteInPlace requirements.txt \
18       --replace-fail "requests~=2.18" "requests"
19   '';
21   build-system = [ setuptools ];
23   dependencies = [
24     cirq-core
25     requests
26   ];
28   nativeCheckInputs = [ pytestCheckHook ];
30   # cirq's importlib hook doesn't work here
31   #pythonImportsCheck = [ "cirq_aqt" ];
33   disabledTestPaths = [
34     # No need to test the version number
35     "cirq_aqt/_version_test.py"
36   ];