about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-10-04 19:16:25 -0400
committerGitHub <noreply@github.com>2023-10-04 19:16:25 -0400
commit9f20229c6cf12577bb428fb025b06138f0808384 (patch)
tree89b461a3ee4251e8a00cdada93d5867119628929 /pkgs
parent5363e5b1ac565d5a40bb0c5e92df47111506f9b6 (diff)
parent44eea67683ec477d2c6cecdbf9e6f9585e95d0f9 (diff)
Merge pull request #259063 from SuperSandro2000/crudini
crudini: 0.9.4 -> 0.9.5
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/misc/crudini/default.nix12
1 files changed, 2 insertions, 10 deletions
diff --git a/pkgs/tools/misc/crudini/default.nix b/pkgs/tools/misc/crudini/default.nix
index 1e25413b151f4..fa4e7cc34a484 100644
--- a/pkgs/tools/misc/crudini/default.nix
+++ b/pkgs/tools/misc/crudini/default.nix
@@ -8,24 +8,16 @@
 
 python3Packages.buildPythonApplication rec {
   pname = "crudini";
-  version = "0.9.4";
+  version = "0.9.5";
   format = "pyproject";
 
   src = fetchFromGitHub {
     owner = "pixelb";
     repo = "crudini";
     rev = version;
-    hash = "sha256-jbTOaCF/ZqRpM0scDBBAcV5bSYg/QhBPbM9R5cONZ2o=";
+    hash = "sha256-BU4u7uBsNyDOwWUjOIlBWcf1AeUXXZ+johAe+bjws1U=";
   };
 
-  patches = [
-    (fetchpatch {
-      name = "add-missing-install-file.patch";
-      url = "https://github.com/pixelb/crudini/commit/d433e4d9c4106ae26985e3f4b2efa593bdd5c274.patch";
-      hash = "sha256-aDGzoG4i2tvYeL8m1WoqwNFNHe4xR1dGk+XDt3f3i5E=";
-    })
-  ];
-
   postPatch = ''
     patchShebangs crudini.py crudini-help tests/test.sh
   '';