3 fallback-git-cache = self.python3Packages.callPackage (
12 buildPythonPackage rec {
16 url = "https://git.scottworley.com/pub/git/git-cache";
18 hash = "sha256-g4TS/zX3e29Q3ThsCAX2wLLlYbi8fdux5uqAc+b/Oww=";
21 build-system = [ setuptools ];
22 propagatedBuildInputs = [ backoff ];
28 checkPhase = "./test.sh";
32 fallback-pinch = self.python3Packages.callPackage (
42 buildPythonPackage rec {
46 url = "https://git.scottworley.com/pub/git/pinch";
48 hash = "sha256-+SdKvGPofOJn0lBOSP4SH3i2WGpBuEXmLzzpYD1epgc=";
51 build-system = [ setuptools ];
52 propagatedBuildInputs = [ git-cache ];
59 checkPhase = "./test.sh";
61 ) { git-cache = self.python3Packages.git-cache or fallback-git-cache; };
65 pinch = super.pinch or fallback-pinch;