depot/third_party/nixpkgs/pkgs/development/python-modules/portalocker/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

56 lines
1,003 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
# build-system
setuptools,
setuptools-scm,
# dependencies
redis,
# tests
pygments,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "portalocker";
version = "2.8.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-KwNap4KORsWOmzE5DuHxabmOEGarELmmqGH+fiXuTzM=";
};
postPatch = ''
sed -i "/--cov/d" pytest.ini
'';
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [ redis ];
nativeCheckInputs = [
pygments
pytestCheckHook
];
pythonImportsCheck = [ "portalocker" ];
meta = with lib; {
changelog = "https://github.com/wolph/portalocker/releases/tag/v${version}";
description = "Library to provide an easy API to file locking";
homepage = "https://github.com/WoLpH/portalocker";
license = licenses.psfl;
maintainers = with maintainers; [ jonringer ];
};
}