From 03f4cef488ee4621d07f338e8be8560b240b11c7 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 26 Apr 2023 21:24:31 +0200 Subject: [PATCH] python310Packages.django-markup: 1.6 -> 1.7 https://github.com/bartTC/django-markup/blob/v1.7/CHANGELOG.rst --- .../development/python-modules/django-markup/default.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/django-markup/default.nix b/pkgs/development/python-modules/django-markup/default.nix index d54936c55539..b2ef5eff47a7 100644 --- a/pkgs/development/python-modules/django-markup/default.nix +++ b/pkgs/development/python-modules/django-markup/default.nix @@ -19,14 +19,14 @@ buildPythonPackage rec { pname = "django-markup"; - version = "1.6"; + version = "1.7"; format = "setuptools"; src = fetchFromGitHub { owner = "bartTC"; repo = "django-markup"; rev = "refs/tags/v${version}"; - hash = "sha256-Hh+3KxFE6sSIqRowyZ1Pz6NmBaTbltZaEhSjFrw760Q="; + hash = "sha256-P36DYOcjYAvzhSLe5CwzRaIm/KzrpUh0YZjzcwnSBG8="; }; postPatch = '' @@ -60,11 +60,6 @@ buildPythonPackage rec { env.DJANGO_SETTINGS_MODULE = "django_markup.tests"; - disabledTests = [ - # https://github.com/bartTC/django-markup/issues/40 - "test_rst_with_pygments" - ]; - meta = with lib; { description = "Generic Django application to convert text with specific markup to html."; homepage = "https://github.com/bartTC/django-markup";