pythonPackages.pandocfilters: refactor move to python-modules
This commit is contained in:
parent
89623a675e
commit
f310c74cfd
24
pkgs/development/python-modules/pandocfilters/default.nix
Normal file
24
pkgs/development/python-modules/pandocfilters/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -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 { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user