Unverified Commit f5ed5aa6 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python312Packages.transaction: 4.0 -> 5.0 (#361685)

parents 61220b97 360cf296
Loading
Loading
Loading
Loading
+28 −13
Original line number Diff line number Diff line
{
  lib,
  fetchPypi,
  fetchFromGitHub,
  buildPythonPackage,
  setuptools,
  zope-interface,
  mock,
  pytestCheckHook,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "transaction";
  version = "4.0";
  format = "setuptools";
  version = "5.0";
  pyproject = true;

  disabled = pythonOlder "3.7";
  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-aANduRP2DRvhL2Vj0gHaqzbIPnY94ViZ/4M48m5eYvI=";
  src = fetchFromGitHub {
    owner = "zopefoundation";
    repo = "transaction";
    rev = "refs/tags/${version}";
    hash = "sha256-8yvA2dvB69+EqsAa+hc93rgg6D64lcajl6JgFabhjwY=";
  };

  propagatedBuildInputs = [
  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail "setuptools<74" "setuptools"
  '';

  build-system = [
    setuptools
  ];

  dependencies = [
    zope-interface
    mock
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [ "transaction" ];

  meta = with lib; {
  meta = {
    description = "Transaction management";
    homepage = "https://transaction.readthedocs.io/";
    changelog = "https://github.com/zopefoundation/transaction/blob/${version}/CHANGES.rst";
    license = licenses.zpl20;
    maintainers = [ ];
    license = lib.licenses.zpl21;
    maintainers = with lib.maintainers; [ nickcao ];
  };
}