depot/third_party/nixpkgs/pkgs/development/python-modules/filelock/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

40 lines
807 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, hatch-vcs
, hatchling
, pytest-mock
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "filelock";
version = "3.13.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Uh9fVsUPhCb14DrTsoG0kKh+8VvGxSbxaCkPDHFI1E4=";
};
nativeBuildInputs = [
hatch-vcs
hatchling
];
nativeCheckInputs = [
pytest-mock
pytestCheckHook
];
meta = with lib; {
changelog = "https://github.com/tox-dev/py-filelock/releases/tag/${version}";
description = "A platform independent file lock for Python";
homepage = "https://github.com/benediktschmitt/py-filelock";
license = licenses.unlicense;
maintainers = with maintainers; [ hyphon81 ];
};
}