pythonPackages.xstatic-pygments: move to python-modules

This commit is contained in:
makefu
2018-02-27 10:59:18 +01:00
parent 0b5af0399d
commit b4eee22b6f
2 changed files with 26 additions and 15 deletions

View File

@@ -0,0 +1,25 @@
{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
pname = "XStatic-Pygments";
version = "1.6.0.1";
src = fetchPypi {
inherit version pname;
sha256 = "0fjqgg433wfdnswn7fad1g6k2x6mf24wfnay2j82j0fwgkdxrr7m";
};
# no tests implemented
doCheck = false;
meta = with lib;{
homepage = http://pygments.org;
description = "pygments packaged static files for python";
license = licenses.mit;
maintainers = with maintainers; [ makefu ];
};
}