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