pythonPackages.transaction: 1.4.3 -> 2.1.2
This commit is contained in:
committed by
Frederik Rietdijk
parent
490df67562
commit
f06a5f4935
26
pkgs/development/python-modules/transaction/default.nix
Normal file
26
pkgs/development/python-modules/transaction/default.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{ stdenv
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, zope_interface
|
||||
, mock
|
||||
}:
|
||||
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "transaction";
|
||||
version = "2.1.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1mab0r3grmgz9d97y8pynhg0r34v0am35vpxyvh7ff5sgmg3dg5r";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ zope_interface mock ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Transaction management";
|
||||
homepage = http://pypi.python.org/pypi/transaction;
|
||||
license = licenses.zpl20;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user