Commit 21cfe646 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

python311Packages.mhcflurry: 2.1.0 -> 2.1.1 + mark as broken

parent ab47c793
Loading
Loading
Loading
Loading
+11 −8
Original line number Diff line number Diff line
@@ -16,18 +16,18 @@

buildPythonPackage rec {
  pname = "mhcflurry";
  version = "2.1.0";
  format = "setuptools";
  version = "2.1.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "openvax";
    repo = pname;
    repo = "mhcflurry";
    rev = "refs/tags/v${version}";
    hash = "sha256-VyPHcNlZYgNJZb2UBFX55x+nE0GnHixkcsiTNjDCju0=";
    hash = "sha256-absIKvcFo6I1Uu0t+l8OLOU/AQ4kD295P4+KVwMAWMc=";
  };

  # keras and tensorflow are not in the official setup.py requirements but are required for the CLI utilities to run.
  propagatedBuildInputs = [
  dependencies = [
    appdirs
    keras
    mhcgnomes
@@ -82,10 +82,13 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "mhcflurry" ];

  meta = with lib; {
  meta = {
    description = "Peptide-MHC I binding affinity prediction";
    homepage = "https://github.com/openvax/mhcflurry";
    license = licenses.asl20;
    maintainers = with maintainers; [ samuela ];
    changelog = "https://github.com/openvax/mhcflurry/releases/tag/v${version}";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ samuela ];
    # ModuleNotFoundError: No module named 'keras.api._v2' as tensorflow is too outdated
    broken = true;
  };
}