biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / zc-lockfile / default.nix
blob2d7c5dc0c87eff137e3f3ce754bd81c16d0fc689
2   buildPythonPackage,
3   fetchPypi,
4   mock,
5   zope-testing,
6   lib,
7 }:
9 buildPythonPackage rec {
10   pname = "zc-lockfile";
11   version = "3.0.post1";
13   src = fetchPypi {
14     pname = "zc.lockfile";
15     inherit version;
16     hash = "sha256-rbLubZ5qIzPJEXjcssm5aldEx47bdxLceEp9dWSOgew=";
17   };
19   buildInputs = [ mock ];
20   propagatedBuildInputs = [ zope-testing ];
22   meta = with lib; {
23     description = "Inter-process locks";
24     homepage = "https://www.python.org/pypi/zc.lockfile";
25     license = licenses.zpl20;
26     maintainers = [ ];
27   };