python311Packages.cachier: 2.2.2 -> 2.3.0

Diff: https://github.com/python-cachier/cachier/compare/v2.2.2...v2.3.0
This commit is contained in:
Peder Bergebakken Sundt 2024-02-17 18:35:25 +01:00
parent 28d6a724f5
commit 3f732cdc3e

View File

@ -16,7 +16,7 @@
buildPythonPackage rec {
pname = "cachier";
version = "2.2.2";
version = "2.3.0";
pyproject = true;
disabled = pythonOlder "3.8";
@ -25,7 +25,7 @@ buildPythonPackage rec {
owner = "python-cachier";
repo = "cachier";
rev = "v${version}";
hash = "sha256-zUZqT4SIwZRqhRS/wHIzIYVULnp5aYcytCQd17T0D/4=";
hash = "sha256-pgDv0ApFgaNR0amqJNwkTSPlqczOClk9D1uVzZW1B7g=";
};
pythonRemoveDeps = [ "setuptools" ];
@ -41,10 +41,10 @@ buildPythonPackage rec {
];
preCheck = ''
substituteInPlace pytest.ini \
substituteInPlace pyproject.toml \
--replace \
"--cov" \
"#--cov"
'"--cov' \
'#"--cov'
'';
nativeCheckInputs = [
@ -77,7 +77,6 @@ buildPythonPackage rec {
pythonImportsCheck = [
"cachier"
"cachier.scripts"
];
meta = {