summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
b7b747f)
Use nix from nixpkgs rather than from PATH. This is needed when the nix
in PATH is nixUnstable-3.0pre20201020_e0ca98c or later because nix commit
787469c7b66aec12ab6847e7db2cdc8aef5c325e removed <nix/unpack-channel.nix>.
}) { backoff = self.python3Packages.backoff or fallback-backoff; };
fallback-pinch = self.python3Packages.callPackage
}) { backoff = self.python3Packages.backoff or fallback-backoff; };
fallback-pinch = self.python3Packages.callPackage
- ({ buildPythonPackage, fetchgit, nix, git, mypy, git-cache, }:
+ ({ buildPythonPackage, fetchgit, nix, git, makeWrapper, mypy, git-cache, }:
buildPythonPackage rec {
pname = "pinch";
buildPythonPackage rec {
pname = "pinch";
src = fetchgit {
url = "https://scottworley.com/pinch.git";
rev = "v${version}";
src = fetchgit {
url = "https://scottworley.com/pinch.git";
rev = "v${version}";
- sha256 = "1j1y4h6m7fdb839h6igimqqjrdhr28wbzwa4b3grxp6szdpzkkra";
+ sha256 = "1i7v9vcjk599ffzwf3nq38y811cm6rnxriarqgpp3kwy52r91mi2";
+ buildInputs = [ makeWrapper ];
propagatedBuildInputs = [ git-cache ];
checkInputs = [ nix git mypy ];
propagatedBuildInputs = [ git-cache ];
checkInputs = [ nix git mypy ];
+ postInstall = ''
+ wrapProgram "$out/bin/pinch" --prefix PATH : ${nix}/bin
+ '';
doCheck = true;
checkPhase = "./test.sh";
}) { git-cache = self.python3Packages.git-cache or fallback-git-cache; };
doCheck = true;
checkPhase = "./test.sh";
}) { git-cache = self.python3Packages.git-cache or fallback-git-cache; };