about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/transaction/default.nix
blob: 887c46863362c23e8a9ccceeafb13c8ba1be0b76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv
, fetchPypi
, buildPythonPackage
, zope_interface
, mock
}:


buildPythonPackage rec {
  pname = "transaction";
  version = "3.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "3b0ad400cb7fa25f95d1516756c4c4557bb78890510f69393ad0bd15869eaa2d";
  };

  propagatedBuildInputs = [ zope_interface mock ];

  meta = with stdenv.lib; {
    description = "Transaction management";
    homepage = "https://pypi.python.org/pypi/transaction";
    license = licenses.zpl20;
  };
}