nixpkgs/pkgs/development/python-modules/Pygments/default.nix

28 lines
538 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, docutils
}:
buildPythonPackage rec {
pname = "Pygments";
2019-12-19 19:31:03 +00:00
version = "2.5.2";
src = fetchPypi {
inherit pname version;
2019-12-19 19:31:03 +00:00
sha256 = "98c8aa5a9f778fcd1026a17361ddaf7330d1b7c62ae97c3bb0ae73e0b9b6b0fe";
};
propagatedBuildInputs = [ docutils ];
# Circular dependency with sphinx
doCheck = false;
meta = {
2020-01-10 20:17:37 +00:00
homepage = https://pygments.org/;
description = "A generic syntax highlighter";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ ];
};
}