present: fix crash caused by dependency

fixes #348788
This commit is contained in:
Erno Hopearuoho 2024-10-15 20:12:56 +03:00 committed by Erno Hopearuoho
parent 249326834c
commit 55cabd03a0
No known key found for this signature in database
GPG Key ID: E47F597C7D33FD4F

View File

@ -1,5 +1,16 @@
{ 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" ];