2017-05-07 22:23:32 +02:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, docutils
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Pygments";
|
2020-06-06 08:46:56 +02:00
|
|
|
version = "2.6.1";
|
2017-05-07 22:23:32 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 08:46:56 +02:00
|
|
|
sha256 = "647344a061c249a3b74e230c739f434d7ea4d8b1d5f3721bc0f3558049b38f44";
|
2017-05-07 22:23:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ docutils ];
|
|
|
|
|
|
|
|
# Circular dependency with sphinx
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://pygments.org/";
|
2017-05-07 22:23:32 +02:00
|
|
|
description = "A generic syntax highlighter";
|
|
|
|
license = lib.licenses.bsd2;
|
2019-07-03 11:27:39 +02:00
|
|
|
maintainers = with lib.maintainers; [ ];
|
2017-05-07 22:23:32 +02:00
|
|
|
};
|
2019-07-03 11:27:39 +02:00
|
|
|
}
|