about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/zc_lockfile/default.nix
blob: 70e2406ffa41a9f57f785aadd8698d17e6661fed (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
, lib
}:

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

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-5Y/9ndYsbUMuhoK/oZbJDKw+XB4/JNrjuJ1ggihV14g=";
  };

  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 ];
  };
}