mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
parent
249326834c
commit
55cabd03a0
@ -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" ];
|
||||
|
Loading…
Reference in New Issue
Block a user