about summary refs log tree commit diff
path: root/pkgs/development/python-modules/grip
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-04-15 02:11:19 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-04-15 03:29:35 +0200
commitcd3b084c17052771ce7c23243d7f251687095f84 (patch)
tree27d3aa5751ecdb8d56e70aa5ca6e9ab9da0c534a /pkgs/development/python-modules/grip
parente87755d957088e5366d98197a774eddbfe7d886a (diff)
python3Packages.grip: 4.5.2 -> 4.6.1
Diffstat (limited to 'pkgs/development/python-modules/grip')
-rw-r--r--pkgs/development/python-modules/grip/default.nix13
1 files changed, 2 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/grip/default.nix b/pkgs/development/python-modules/grip/default.nix
index dafa692493e3d..eab4b45547c16 100644
--- a/pkgs/development/python-modules/grip/default.nix
+++ b/pkgs/development/python-modules/grip/default.nix
@@ -1,6 +1,5 @@
 { lib
 , fetchFromGitHub
-, fetchpatch
 # Python bits:
 , buildPythonPackage
 , pytest
@@ -16,23 +15,15 @@
 
 buildPythonPackage rec {
   pname = "grip";
-  version = "4.5.2";
+  version = "4.6.1";
 
   src = fetchFromGitHub {
     owner = "joeyespo";
     repo = "grip";
     rev = "v${version}";
-    sha256 = "0hphplnyi903jx7ghfxplg1qlj2kpcav1frr2js7p45pbh5ib9rm";
+    sha256 = "sha256-CHL2dy0H/i0pLo653F7aUHFvZHTeZA6jC/rwn1KrEW4=";
   };
 
-  patches = [
-    # Render "front matter", used in our RFC template and elsewhere
-    (fetchpatch {
-      url = "https://github.com/joeyespo/grip/pull/249.patch";
-      sha256 = "07za5iymfv647dfrvi6hhj54a96hgjyarys51zbi08c51shqyzpg";
-    })
-  ];
-
   checkInputs = [ pytest responses ];
 
   propagatedBuildInputs = [ docopt flask markdown path-and-address pygments requests tabulate ];