536b4e89ff
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-transaction/versions
26 lines
483 B
Nix
26 lines
483 B
Nix
{ stdenv
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, zope_interface
|
|
, mock
|
|
}:
|
|
|
|
|
|
buildPythonPackage rec {
|
|
pname = "transaction";
|
|
version = "2.4.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "17wz1y524ca07vr03yddy8dv0gbscs06dbdywmllxv5rc725jq3j";
|
|
};
|
|
|
|
propagatedBuildInputs = [ zope_interface mock ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Transaction management";
|
|
homepage = https://pypi.python.org/pypi/transaction;
|
|
license = licenses.zpl20;
|
|
};
|
|
}
|