Commit c9238fb3 authored by phaer's avatar phaer
Browse files

python3Packages.rst2ansi: 0.1.5 -> 0.1.5-unstable-2025-02-12

Fetch from GitHub master instead of PyPI to pick up fixes for
docutils >= 0.21 compatibility (removal of error_reporting module)
parent 4795ccda
Loading
Loading
Loading
Loading
+8 −6
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  fetchFromGitHub,
  docutils,
}:

buildPythonPackage rec {
buildPythonPackage {
  pname = "rst2ansi";
  version = "0.1.5";
  version = "0.1.5-unstable-2025-02-12";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-Gxf7mmKNQPV5M60aOqlSNGREvgaUaVCOc+lQYNoz/m8=";
  src = fetchFromGitHub {
    owner = "Snaipe";
    repo = "python-rst2ansi";
    rev = "3728e16f8b8b1dc338e5df90ba2c4a93ee054b3f";
    hash = "sha256-V7tl/YJcPvEgBfH334t6CU7OXKQqBqRo/zZPiOlyCmE=";
  };

  propagatedBuildInputs = [ docutils ];