Unverified Commit 55cabd03 authored by Erno Hopearuoho's avatar Erno Hopearuoho Committed by Erno Hopearuoho
Browse files

present: fix crash caused by dependency

fixes #348788
parent 24932683
Loading
Loading
Loading
Loading
+12 −1
Original line number Diff line number Diff line
{ lib, python3Packages, fetchPypi }:

let
    # https://github.com/NixOS/nixpkgs/issues/348788
    mistune_2 = python3Packages.mistune.overridePythonAttrs(oldAttrs: rec {
      version = "2.0.5";
      src =  fetchPypi {
        inherit (oldAttrs) pname;
        inherit version;
        hash = "sha256-AkYRPLJJLbh1xr5Wl0p8iTMzvybNkokchfYxUc7gnTQ=";
      };
    });
in
python3Packages.buildPythonPackage rec {
  pname = "present";
  version = "0.6.0";
@@ -14,7 +25,7 @@ python3Packages.buildPythonPackage rec {
    pyyaml
    pyfiglet
    asciimatics
    mistune
    mistune_2
  ];

  pythonImportsCheck = [ "present" ];