Unverified Commit 17e10c09 authored by Markus Kowalewski's avatar Markus Kowalewski Committed by GitHub
Browse files

openmm: 8.2.0 -> 8.3.0 (#417464)

parents eb366d02 e6a949f3
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -18,15 +18,15 @@
  addDriverRunpath,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "openmm";
  version = "8.2.0";
  version = "8.3.0";

  src = fetchFromGitHub {
    owner = "openmm";
    repo = "openmm";
    rev = version;
    hash = "sha256-p0zjr8ONqGK4Vbnhljt16DeyeZ0bR1kE+YdiIlw/1L0=";
    rev = finalAttrs.version;
    hash = "sha256-wXk5s6OascFWjHs4WpxGU9TcX0gSiOZ3BRusIH1NjpI=";
  };

  # "This test is stochastic and may occasionally fail". It does.
@@ -128,4 +128,4 @@ stdenv.mkDerivation rec {
    platforms = platforms.linux;
    maintainers = [ maintainers.sheepforce ];
  };
}
})
+6 −2
Original line number Diff line number Diff line
@@ -11,14 +11,14 @@

buildPythonPackage rec {
  pname = "pdbfixer";
  version = "1.10";
  version = "1.11";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "openmm";
    repo = "pdbfixer";
    tag = "v${version}";
    hash = "sha256-7bg/i7nhbBw/DCc7Rabt5pwUUPF27Iiy2dMQnV6GTiM=";
    hash = "sha256-Xk3m2w1p3Wu4g6qKGOH679wkKT0LKZLgGn/ARn219fQ=";
  };

  nativeBuildInputs = [
@@ -48,6 +48,10 @@ buildPythonPackage rec {
    "test_mutate_multiple_copies_of_chain_A"
    "test_pdbid"
    "test_url"
    "test_charge_and_solvate"
    "test_download_template"
    "test_nonstandard"
    "test_leaving_atoms"
  ];

  pythonImportsCheck = [ "pdbfixer" ];