We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba43d90 commit fedaae1Copy full SHA for fedaae1
overrides.nix
@@ -654,6 +654,23 @@ self: super:
654
}
655
);
656
657
+ # Work around https://github.com/nix-community/poetry2nix/issues/244
658
+ # where git deps are not picked up as they should
659
+ pip = if lib.versionAtLeast super.pip.version "20.3" then super.pip.overridePythonAttrs (old: let
660
+ pname = "pip";
661
+ version = "20.2.4";
662
+ in {
663
+ name = pname + "-" + version;
664
+ inherit version;
665
+ src = pkgs.fetchFromGitHub {
666
+ owner = "pypa";
667
+ repo = pname;
668
+ rev = version;
669
+ sha256 = "eMVV4ftgV71HLQsSeaOchYlfaJVgzNrwUynn3SA1/Do=";
670
+ name = "${pname}-${version}-source";
671
+ };
672
+ }) else super.pip;
673
+
674
poetry-core = super.poetry-core.overridePythonAttrs (old: {
675
# "Vendor" dependencies (for build-system support)
676
postPatch = ''
0 commit comments