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
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
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;
};
}

View File

@ -4545,25 +4545,7 @@ in {
scrapy = callPackage ../development/python-modules/scrapy { }; scrapy = callPackage ../development/python-modules/scrapy { };
pandocfilters = buildPythonPackage rec{ pandocfilters = callPackage ../development/python-modules/pandocfilters { };
version = "1.4.1";
pname = "pandocfilters";
name = pname + "-${version}";
src = fetchPypi{
inherit pname version;
sha256 = "ec8bcd100d081db092c57f93462b1861bcfa1286ef126f34da5cb1d969538acd";
};
# No tests available
doCheck = false;
meta = {
description = "A python module for writing pandoc filters, with a collection of examples";
homepage = https://github.com/jgm/pandocfilters;
license = licenses.mit;
maintainers = with maintainers; [];
};
};
htmltreediff = callPackage ../development/python-modules/htmltreediff { }; htmltreediff = callPackage ../development/python-modules/htmltreediff { };