openmm: 8.2.0 -> 8.3.0 (#417464)

This commit is contained in:
Markus Kowalewski
2025-06-22 12:43:52 +02:00
committed by GitHub
2 changed files with 11 additions and 7 deletions
+5 -5
View File
@@ -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 ];
};
}
})
@@ -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" ];