Unverified Commit 5e97a107 authored by natsukium's avatar natsukium
Browse files

python3Packages.acebinf: remove

This library was introduced as a dependency of "truvari" but is no
longer used.
Also, "pyvcf" on which it depends, cannot be built due to the removal of
"use_2to3".
parent 58e7a9dc
Loading
Loading
Loading
Loading
+0 −28
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, pyvcf
}:

buildPythonPackage rec {
  pname = "ACEBinf";
  version = "1.0.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1168pny671l6zfm2vv1pwspnflmzi7f4v8yldjl7zlz0b9cm5zlz";
  };

  buildInputs = [ pyvcf ];

  # no tests
  doCheck = false;
  pythonImportsCheck = [ "acebinf" ];

  meta = with lib; {
    homepage = "https://github.com/ACEnglish/acebinf";
    description = "Collection of simple utilities used when building bioinformatics tools";
    license = licenses.unlicense;
    maintainers = with maintainers; [ ris ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ in

mapAliases ({
  abodepy = jaraco-abode; # added 2023-02-01
  acebinf = throw "acebinf has been removed because it is abandoned and broken."; # Added 2023-05-19
  aioh2 = throw "aioh2 has been removed because it is abandoned and broken."; # Added 2022-03-30
  ansible-base = throw "ansible-base has been removed, because it is end of life"; # added 2022-03-30
  ansible-doctor = throw "ansible-doctor has been promoted to a top-level attribute"; # Added 2023-05-16
+0 −2
Original line number Diff line number Diff line
@@ -28,8 +28,6 @@ self: super: with self; {

  accupy = callPackage ../development/python-modules/accupy { };

  acebinf = callPackage ../development/python-modules/acebinf { };

  acme = callPackage ../development/python-modules/acme { };

  acme-tiny = callPackage ../development/python-modules/acme-tiny { };