about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-04-08 00:21:33 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-08 11:36:07 +0200
commit0fc352367acd866e254da110199f7087277120eb (patch)
tree1ba72c37650059de65e2613638b2702ebadeca2e /pkgs
parent35b38b021b47064e973c948b5377753a57150cf2 (diff)
python: cmarkgfm: 0.3.0 -> 0.4.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/cmarkgfm/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/cmarkgfm/default.nix b/pkgs/development/python-modules/cmarkgfm/default.nix
index 2dcd8422ebeca..5867c33642f5b 100644
--- a/pkgs/development/python-modules/cmarkgfm/default.nix
+++ b/pkgs/development/python-modules/cmarkgfm/default.nix
@@ -2,11 +2,11 @@
 
 buildPythonPackage rec {
   pname = "cmarkgfm";
-  version = "0.3.0";
+  version = "0.4.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "84465f6534f49687f1a8069d48044799d2dd3f4e7ff06b66b7eea1502f3c402d";
+    sha256 = "977d7061779c7ebc5cbe7af71adb795ced96058552fe5f6b646d95b5055959be";
   };
 
   propagatedBuildInputs = [ cffi ];
@@ -17,10 +17,6 @@ buildPythonPackage rec {
     py.test
   '';
 
-  # no tests in PyPI tarball
-  # see https://github.com/jonparrott/cmarkgfm/pull/6
-  doCheck = false;
-
   meta = with lib; {
     description = "Minimal bindings to GitHub's fork of cmark";
     homepage = https://github.com/jonparrott/cmarkgfm;