Commit 5946122f authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Pasckages.cirq-ft: remove

parent 55010041
Loading
Loading
Loading
Loading
+0 −45
Original line number Diff line number Diff line
{
  attrs,
  buildPythonPackage,
  cachetools,
  cirq-core,
  ipython,
  ipywidgets,
  nbconvert,
  nbformat,
  pytestCheckHook,
  setuptools,
}:

buildPythonPackage rec {
  pname = "cirq-ft";
  pyproject = true;
  inherit (cirq-core) version src meta;

  sourceRoot = "${src.name}/${pname}";

  nativeBuildInputs = [ setuptools ];

  propagatedBuildInputs = [
    attrs
    cachetools
    cirq-core
    ipython
    ipywidgets
    nbconvert
    nbformat
  ];

  nativeCheckInputs = [
    ipython
    pytestCheckHook
  ];

  disabledTests = [
    # Upstream doesn't always adjust the version
    "test_version"
  ];

  # cirq's importlib hook doesn't work here
  #pythonImportsCheck = [ "cirq_ft" ];
}
+0 −3
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
  buildPythonPackage,
  cirq-aqt,
  cirq-core,
  cirq-ft,
  cirq-google,
  cirq-ionq,
  cirq-pasqal,
@@ -19,7 +18,6 @@ buildPythonPackage rec {
  propagatedBuildInputs = [
    cirq-aqt
    cirq-core
    cirq-ft
    cirq-ionq
    cirq-google
    cirq-rigetti
@@ -34,7 +32,6 @@ buildPythonPackage rec {
  disabledTestPaths = [
    "cirq-aqt"
    "cirq-core"
    "cirq-ft"
    "cirq-google"
    "cirq-ionq"
    "cirq-pasqal"
+1 −0
Original line number Diff line number Diff line
@@ -97,6 +97,7 @@ mapAliases ({
  chiavdf = throw "chiavdf has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26
  chia-rs = throw "chia-rs has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26
  class-registry = phx-class-registry; # added 2021-10-05
  cirq-ft = throw "cirq-ft is not longer provieded by cirq upstream"; # added 2024-08-31
  cld2-cffi = throw "cld2-cffi has been removed, as the last release was in 2016"; # added 2024-05-20
  clvm = throw "clvm has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26
  clvm-rs = throw "clvm-rs has been removed. see https://github.com/NixOS/nixpkgs/pull/270254"; # added 2023-11-26
+0 −2
Original line number Diff line number Diff line
@@ -2221,8 +2221,6 @@ self: super: with self; {
  cirq-core = callPackage ../development/python-modules/cirq-core { };
  cirq-ft = callPackage ../development/python-modules/cirq-ft { };
  cirq-ionq = callPackage ../development/python-modules/cirq-ionq { };
  cirq-google = callPackage ../development/python-modules/cirq-google { };