From 3f732cdc3e0ad2068d723734fae74fce1ace4e1c Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Sat, 17 Feb 2024 18:35:25 +0100 Subject: [PATCH] python311Packages.cachier: 2.2.2 -> 2.3.0 Diff: https://github.com/python-cachier/cachier/compare/v2.2.2...v2.3.0 --- pkgs/development/python-modules/cachier/default.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/cachier/default.nix b/pkgs/development/python-modules/cachier/default.nix index 28159a16454c..0cfc20b73397 100644 --- a/pkgs/development/python-modules/cachier/default.nix +++ b/pkgs/development/python-modules/cachier/default.nix @@ -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 = {