biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / lockfile / default.nix
blob04e4bc881bfc458bbac97b7dde3f2550428a1230
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   pbr,
7   pytestCheckHook,
8 }:
10 buildPythonPackage rec {
11   pname = "lockfile";
12   version = "0.12.2";
13   pyproject = true;
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-au0C3gPLok76vNYAswVAFAY0/AbPpgOCLVCNU2Hp95k=";
18   };
20   patches = [ ./fix-tests.patch ];
22   build-system = [
23     pbr
24     setuptools
25   ];
27   nativeCheckInputs = [ pytestCheckHook ];
29   meta = {
30     homepage = "https://launchpad.net/pylockfile";
31     description = "Platform-independent advisory file locking capability for Python applications";
32     license = lib.licenses.asl20;
33   };