depot/third_party/nixpkgs/pkgs/development/python-modules/filelock/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

38 lines
770 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, hatch-vcs
, hatchling
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "filelock";
version = "3.9.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-ezGfJDQLUfVaK/ehKsB1WpsD5xgxHaxWeg9Pf6vS9d4=";
};
nativeBuildInputs = [
hatch-vcs
hatchling
];
checkInputs = [
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 ];
};
}