]> git.scottworley.com Git - auto-upgrade-with-pinch/commitdiff
pinch: 3.0.7 → 3.0.9
authorScott Worley <scottworley@scottworley.com>
Sat, 30 Apr 2022 00:13:22 +0000 (17:13 -0700)
committerScott Worley <scottworley@scottworley.com>
Sat, 30 Apr 2022 00:13:22 +0000 (17:13 -0700)
overlays/pinch.nix

index 05da5bea64dac62850a9dc6ef144463ff5c42fdd..7d2940aa97a79599e4e18cfa93014d8b1e076e50 100644 (file)
@@ -35,20 +35,20 @@ let
       }) { backoff = self.python3Packages.backoff or fallback-backoff; };
 
   fallback-pinch = self.python3Packages.callPackage
-    ({ buildPythonPackage, fetchgit, nix, git, makeWrapper, mypy, git-cache, }:
+    ({ buildPythonPackage, fetchgit, nix_2_3, git, makeWrapper, mypy, git-cache, }:
       buildPythonPackage rec {
         pname = "pinch";
-        version = "3.0.7";
+        version = "3.0.9";
         src = fetchgit {
           url = "https://git.scottworley.com/pub/git/pinch";
           rev = "v${version}";
-          sha256 = "sha256-BMESwx3uUVOFekiXr1LSGNF4DXexT26awzIQIzw/iZY=";
+          sha256 = "sha256-D1XC8pmemdOpIEWvS0VH9Fguvp92FqpQfJj2TudfwRw=";
         };
         buildInputs = [ makeWrapper ];
         propagatedBuildInputs = [ git-cache ];
-        checkInputs = [ nix git mypy ];
+        checkInputs = [ nix_2_3 git mypy ];
         postInstall = ''
-          wrapProgram "$out/bin/pinch" --prefix PATH : ${nix}/bin
+          wrapProgram "$out/bin/pinch" --prefix PATH : ${nix_2_3}/bin
         '';
         doCheck = true;
         checkPhase = "./test.sh";