Unverified Commit 2093405c authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #224218 from betaboon/fix-pdm-build

parents a7671e1b b7a281f0
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -7,6 +7,15 @@ let
    # 3. Ansible being unable to upgrade to a later version of resolvelib
    # see here for more details: https://github.com/NixOS/nixpkgs/pull/155380/files#r786255738
    packageOverrides = self: super: {
      installer = super.installer.overridePythonAttrs (attrs: rec {
        version = "0.6.0";
        src = fetchFromGitHub {
          owner = "pradyunsg";
          repo = "installer";
          rev = version;
          hash = "sha256-IXznSrc/4LopgZDGFSC6cAOCbts+siKpdl5SvN1FFvA=";
        };
      });
      resolvelib = super.resolvelib.overridePythonAttrs (attrs: rec {
        version = "0.9.0";
        src = fetchFromGitHub {