Merge pull request #221901 from r-ryantm/auto-update/python310Packages.transaction

python310Packages.transaction: 3.0.1 -> 3.1.0
This commit is contained in:
Fabian Affolter
2023-03-19 15:13:54 +01:00
committed by GitHub
@@ -3,23 +3,35 @@
, buildPythonPackage
, zope_interface
, mock
, pythonOlder
}:
buildPythonPackage rec {
pname = "transaction";
version = "3.0.1";
version = "3.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "0c15ef0b7ff3518357ceea75722a30d974c3f85e11aa5cec5d5a2b6a40cfcf68";
hash = "sha256-ZdCx6pLb58Tjsjf7a9i0Heoj10Wee92MOIC//a+RL6Q=";
};
propagatedBuildInputs = [ zope_interface mock ];
propagatedBuildInputs = [
zope_interface
mock
];
pythonImportsCheck = [
"transaction"
];
meta = with lib; {
description = "Transaction management";
homepage = "https://pypi.python.org/pypi/transaction";
homepage = "https://transaction.readthedocs.io/";
changelog = "https://github.com/zopefoundation/transaction/blob/${version}/CHANGES.rst";
license = licenses.zpl20;
maintainers = with maintainers; [ ];
};
}