Unverified Commit 269dfa5d authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

parents fa461f88 45c19a48
Loading
Loading
Loading
Loading
+7 −8
Original line number Diff line number Diff line
@@ -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 ];
  };
}