python312Packages.primer3: 2.0.3 -> 2.1.0 (#388610)

This commit is contained in:
Fabian Affolter
2025-03-15 12:42:07 +01:00
committed by GitHub
@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "primer3";
version = "2.0.3";
version = "2.1.0";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -22,13 +22,12 @@ buildPythonPackage rec {
owner = "libnano";
repo = "primer3-py";
tag = "v${version}";
hash = "sha256-O8BFjkjG9SfknSrK34s9EJnqTrtCf4zW9A+N+/MHl2w=";
hash = "sha256-Kp4JH57gEdj7SzY+7XGBzGloWuTSwUQRBK9QbgXQfUE=";
};
nativeBuildInputs = [
cython
setuptools
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ gcc ];
build-system = [ setuptools ];
nativeBuildInputs = [ cython ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ gcc ];
nativeCheckInputs = [
click
@@ -48,8 +47,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Oligo analysis and primer design";
homepage = "https://github.com/libnano/primer3-py";
changelog = "https://github.com/libnano/primer3-py/blob/v${version}/CHANGES";
license = with licenses; [ gpl2Only ];
changelog = "https://github.com/libnano/primer3-py/blob/${src.tag}/CHANGES";
license = licenses.gpl2Only;
maintainers = with maintainers; [ fab ];
};
}