From 5d2670ea4c0524efe39b86ae1517c5573d100242 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Sat, 8 Jan 2022 08:24:08 -0500 Subject: [PATCH] more general reasoning about special cases for provider choices --- default.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/default.nix b/default.nix index 48bdab3..4724799 100644 --- a/default.nix +++ b/default.nix @@ -41,16 +41,12 @@ in # this another way, dependencies have undetected dependencies, easier # to just use the wheel. collections-extended = "wheel"; - # same as collections-extended isort = "wheel"; - # From nixpkgs or sdist, fails with - # cp: cannot stat 'benchmark/': No such file or directory - # cp: cannot stat 'tests/': No such file or directory + # The sdists for these packages have a different source/directory layout + # than the github archive the nixpkgs derivations expects to operate on + # so the sdists provider fails to build them. tomli = "wheel"; - - # repo re-org or something? - # find: ‘hypothesis-6.32.1/hypothesis-python’: No such file or directory hypothesis = "wheel"; }; in -- GitLab