From 0cb456ff80540f7317e8fe37b82950867a86f7d8 Mon Sep 17 00:00:00 2001 From: amesgen Date: Sat, 29 Mar 2025 14:22:37 +0100 Subject: [PATCH] scriv: 1.5.1 -> 1.7.0 --- pkgs/by-name/sc/scriv/package.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sc/scriv/package.nix b/pkgs/by-name/sc/scriv/package.nix index f3c7c8da3fdc..e3e3f84f3e3e 100644 --- a/pkgs/by-name/sc/scriv/package.nix +++ b/pkgs/by-name/sc/scriv/package.nix @@ -10,14 +10,17 @@ python3.pkgs.buildPythonApplication rec { pname = "scriv"; - version = "1.5.1"; + version = "1.7.0"; + pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-MK6f+NFE+ODPOUxOHTeVQvGzgjdnZClVtU7EDcALMrY="; + hash = "sha256-fBqL5jUdA2kuXnV4Te6g2PEbLJD5G+GLD7OjdVVbUl4="; }; - propagatedBuildInputs = + build-system = with python3.pkgs; [ setuptools ]; + + dependencies = with python3.pkgs; [ attrs @@ -46,6 +49,9 @@ python3.pkgs.buildPythonApplication rec { disabledTests = [ # assumes we have checked out the full repo (including remotes) "test_real_get_github_repos" + # requires a newer pandoc version (as it tests for a specific format of the + # error message) + "test_bad_convert_to_markdown" ]; passthru.tests = {