about summary refs log tree commit diff
path: root/pkgs/development/python-modules/zc_lockfile/default.nix
blob: 110b7000e7351505746b904f341493527e10ca77 (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
26
{ buildPythonPackage
, fetchPypi
, mock
, zope_testing
, stdenv
}:

buildPythonPackage rec {
  pname = "zc.lockfile";
  version = "1.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0lrj2zdr06sff7i151710jbbnnhx4phdc0qpns8jkarpd62f7a4m";
  };

  buildInputs = [ mock ];
  propagatedBuildInputs = [ zope_testing ];

  meta = with stdenv.lib; {
    description = "Inter-process locks";
    homepage =  https://www.python.org/pypi/zc.lockfile;
    license = licenses.zpl20;
    maintainers = with maintainers; [ goibhniu ];
  };
}