From 034fa6419ca72d6a3f2ad3864e79b6b504b3b0c7 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 4 Apr 2024 10:23:48 +0200 Subject: [PATCH] python312Packages.rstcheck-core: 1.2.0 -> 1.2.1 Diff: https://github.com/rstcheck/rstcheck-core/compare/refs/tags/v1.2.0...v1.2.1 Changelog: https://github.com/rstcheck/rstcheck-core/blob/v1.2.1/CHANGELOG.md --- .../python-modules/rstcheck-core/default.nix | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/rstcheck-core/default.nix b/pkgs/development/python-modules/rstcheck-core/default.nix index 74a1dd2dbff2..91dda8d7cb8f 100644 --- a/pkgs/development/python-modules/rstcheck-core/default.nix +++ b/pkgs/development/python-modules/rstcheck-core/default.nix @@ -1,5 +1,5 @@ -{ stdenv -, lib +{ lib +, stdenv , buildPythonPackage , docutils , fetchFromGitHub @@ -12,12 +12,11 @@ , setuptools , setuptools-scm , typing-extensions -, wheel }: buildPythonPackage rec { pname = "rstcheck-core"; - version = "1.2.0"; + version = "1.2.1"; pyproject = true; disabled = pythonOlder "3.8"; @@ -26,20 +25,19 @@ buildPythonPackage rec { owner = "rstcheck"; repo = "rstcheck-core"; rev = "refs/tags/v${version}"; - hash = "sha256-cKJNktIB4vXt1MPRgYrJQ0aksmrVu7Y2uTyUjdx5YdA="; + hash = "sha256-PiQMk0lIv24S6qXMYIQR+SkSji+WA30ivWs2uPQwf2A="; }; - nativeBuildInputs = [ + build-system = [ setuptools setuptools-scm - wheel ]; env = { NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-strict-prototypes"; }; - propagatedBuildInputs = [ + dependencies = [ docutils pydantic ] ++ lib.optionals (pythonOlder "3.9") [