Unverified Commit 8e80ccfa authored by Robert Schütz's avatar Robert Schütz Committed by GitHub
Browse files

poetry: 2.0.0 -> 2.0.1 (#378990)

parents a067a427 7530f96f
Loading
Loading
Loading
Loading
+2 −16
Original line number Diff line number Diff line
@@ -17,27 +17,13 @@ let
      # We keep the override around even when the versions match, as
      # it's likely to become relevant again after the next Poetry update.
      poetry-core = super.poetry-core.overridePythonAttrs (old: rec {
        version = "2.0.0";
        version = "2.0.1";
        src = fetchFromGitHub {
          owner = "python-poetry";
          repo = "poetry-core";
          tag = version;
          hash = "sha256-3dmvFn2rxtR0SK8oiEHIVJhpJpX4Mm/6kZnIYNSDv90=";
          hash = "sha256-X3HFvnjbQ8An856QwSsWm5bmzs9KuscPE9LaVebNfgk=";
        };
        patches = [ ];
        nativeCheckInputs =
          old.nativeCheckInputs
          ++ (with self; [
            trove-classifiers
          ]);
        disabledTests = old.disabledTests ++ [
          # relies on git
          "test_package_with_include"
          # Nix changes timestamp
          "test_dist_info_date_time_default_value"
          "test_sdist_members_mtime_default"
          "test_sdist_mtime_zero"
        ];
      });
    }
    // (plugins self);
+2 −2
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@

buildPythonPackage rec {
  pname = "poetry";
  version = "2.0.0";
  version = "2.0.1";
  pyproject = true;

  disabled = pythonOlder "3.9";
@@ -45,7 +45,7 @@ buildPythonPackage rec {
    owner = "python-poetry";
    repo = "poetry";
    tag = version;
    hash = "sha256-r4TK4CKDfCeCW+Y1vUoS4ppXmn5xEvI1ZBVUHqFJLKo=";
    hash = "sha256-RpAoADxZmH9hQSEjufLBoKJsxIc74RnRxZB3RVNk/iE=";
  };

  patches = [