python310Packages.portalocker: add pythonImportsCheck
- disable on older Python releases
This commit is contained in:
parent
bcbc1bd0ec
commit
ed1ad8c654
@ -1,16 +1,22 @@
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
, pytest-mypy
|
||||
, pythonOlder
|
||||
, redis
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "2.6.0";
|
||||
pname = "portalocker";
|
||||
version = "2.6.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-lk9oMPtCp0tdMrzpntN9gwjB19RN3xjz3Yn0aA3pezk=";
|
||||
hash = "sha256-lk9oMPtCp0tdMrzpntN9gwjB19RN3xjz3Yn0aA3pezk=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
@ -26,6 +32,10 @@ buildPythonPackage rec {
|
||||
"test_combined" # no longer compatible with setuptools>=58
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"portalocker"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A library to provide an easy API to file locking";
|
||||
homepage = "https://github.com/WoLpH/portalocker";
|
||||
|
Loading…
Reference in New Issue
Block a user