python3Packages.cachier: 4.1.0 -> 4.2.0

Changelog: https://github.com/python-cachier/cachier/releases/tag/v4.2.0
This commit is contained in:
Peder Bergebakken Sundt
2026-06-07 01:59:57 +02:00
parent 1029394d36
commit 432ff0c84d
@@ -6,9 +6,12 @@
setuptools,
click,
watchdog,
pympler,
portalocker,
pytestCheckHook,
pytest-cov-stub,
pytest-asyncio,
aiosqlite,
sqlalchemy,
pymongo,
dnspython,
@@ -19,14 +22,14 @@
buildPythonPackage rec {
pname = "cachier";
version = "4.1.0";
version = "4.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "python-cachier";
repo = "cachier";
tag = "v${version}";
hash = "sha256-FmrwH5Ksmgt0HA5eUN5LU36P5sY4PymRKsUWVkQlvBo=";
hash = "sha256-hiyevLMtKV8M8znB2mznHLRM+pVN6uCxZZVf3H0gjTI=";
};
pythonRemoveDeps = [ "setuptools" ];
@@ -37,6 +40,7 @@ buildPythonPackage rec {
dependencies = [
watchdog
pympler
portalocker
# not listed as dep, but needed to run main script entrypoint
click
@@ -45,6 +49,8 @@ buildPythonPackage rec {
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
pytest-asyncio
aiosqlite
sqlalchemy
pymongo
dnspython
@@ -83,7 +89,7 @@ buildPythonPackage rec {
disabledTestPaths = [
# Keeps breaking due to concurrent access or failing to close the db between tests.
"tests/test_sql_core.py"
"tests/sql_tests/test_sql_core.py"
];
preBuild = ''