Unverified Commit d42f60af authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

Merge pull request #289579 from pbsds/bump-cachier-1708191278

python311Packages.cachier: 2.2.2 -> 2.3.0
parents 7dfa5ad0 3f732cdc
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -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 = {