about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/zc-lockfile/default.nix
blob: 8b7818ef119bb586a5df357f846695343c7a17ae (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
27
{ buildPythonPackage
, fetchPypi
, mock
, zope-testing
, lib
}:

buildPythonPackage rec {
  pname = "zc-lockfile";
  version = "3.0.post1";

  src = fetchPypi {
    pname = "zc.lockfile";
    inherit version;
    hash = "sha256-rbLubZ5qIzPJEXjcssm5aldEx47bdxLceEp9dWSOgew=";
  };

  buildInputs = [ mock ];
  propagatedBuildInputs = [ zope-testing ];

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