python3Packages.portalocker: 2.7.0 -> 2.8.2
https://github.com/wolph/portalocker/releases/tag/v2.8.0 https://github.com/wolph/portalocker/releases/tag/v2.8.1 https://github.com/wolph/portalocker/releases/tag/v2.8.2
This commit is contained in:
@@ -1,40 +1,56 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
|
||||
# build-system
|
||||
, setuptools
|
||||
, setuptools-scm
|
||||
|
||||
# dependencies
|
||||
, redis
|
||||
|
||||
# tests
|
||||
, pygments
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "portalocker";
|
||||
version = "2.7.0";
|
||||
format = "setuptools";
|
||||
version = "2.8.2";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-Ay6B1TSojsFzbQP3gLoHPwR6BsR4sG4pN0hvM06VXFE=";
|
||||
hash = "sha256-KwNap4KORsWOmzE5DuHxabmOEGarELmmqGH+fiXuTzM=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
sed -i "/--cov/d" pytest.ini
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
redis
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pygments
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
"test_combined" # no longer compatible with setuptools>=58
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"portalocker"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
changelog = "https://github.com/wolph/portalocker/releases/tag/v${version}";
|
||||
description = "A library to provide an easy API to file locking";
|
||||
homepage = "https://github.com/WoLpH/portalocker";
|
||||
license = licenses.psfl;
|
||||
|
||||
Reference in New Issue
Block a user