pythonPackages.pandocfilters: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-29 16:55:03 -04:00
parent 89623a675e
commit f310c74cfd
2 changed files with 25 additions and 19 deletions

View File

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