My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pandocfilters/default.nix

24 lines
501 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
version = "1.5.0";
pname = "pandocfilters";
src = fetchPypi {
inherit pname version;
sha256 = "0b679503337d233b4339a817bfc8c50064e2eff681314376a47cb582305a7a38";
};
# No tests available
doCheck = false;
meta = with lib; {
description = "A python module for writing pandoc filters, with a collection of examples";
homepage = "https://github.com/jgm/pandocfilters";
license = licenses.mit;
};
}