Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / zc_lockfile / default.nix
blob70e2406ffa41a9f57f785aadd8698d17e6661fed
1 { buildPythonPackage
2 , fetchPypi
3 , mock
4 , zope_testing
5 , lib
6 }:
8 buildPythonPackage rec {
9   pname = "zc.lockfile";
10   version = "3.0";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-5Y/9ndYsbUMuhoK/oZbJDKw+XB4/JNrjuJ1ggihV14g=";
15   };
17   buildInputs = [ mock ];
18   propagatedBuildInputs = [ zope_testing ];
20   meta = with lib; {
21     description = "Inter-process locks";
22     homepage =  "https://www.python.org/pypi/zc.lockfile";
23     license = licenses.zpl20;
24     maintainers = with maintainers; [ goibhniu ];
25   };