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

+6 -8
+6 -8
pkgs/development/python-modules/rstcheck-core/default.nix
··· 1 - { stdenv 2 - , lib 1 + { lib 2 + , stdenv 3 3 , buildPythonPackage 4 4 , docutils 5 5 , fetchFromGitHub ··· 12 12 , setuptools 13 13 , setuptools-scm 14 14 , typing-extensions 15 - , wheel 16 15 }: 17 16 18 17 buildPythonPackage rec { 19 18 pname = "rstcheck-core"; 20 - version = "1.2.0"; 19 + version = "1.2.1"; 21 20 pyproject = true; 22 21 23 22 disabled = pythonOlder "3.8"; ··· 26 25 owner = "rstcheck"; 27 26 repo = "rstcheck-core"; 28 27 rev = "refs/tags/v${version}"; 29 - hash = "sha256-cKJNktIB4vXt1MPRgYrJQ0aksmrVu7Y2uTyUjdx5YdA="; 28 + hash = "sha256-PiQMk0lIv24S6qXMYIQR+SkSji+WA30ivWs2uPQwf2A="; 30 29 }; 31 30 32 - nativeBuildInputs = [ 31 + build-system = [ 33 32 setuptools 34 33 setuptools-scm 35 - wheel 36 34 ]; 37 35 38 36 env = { 39 37 NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-strict-prototypes"; 40 38 }; 41 39 42 - propagatedBuildInputs = [ 40 + dependencies = [ 43 41 docutils 44 42 pydantic 45 43 ] ++ lib.optionals (pythonOlder "3.9") [