summary refs log blame commit diff
path: root/pkgs/development/python-modules/Pygments/default.nix
blob: ca9181fc068e139fa18f83a2316e4b3876ebf750 (plain) (tree)
1
2
3
4
5
6
7
8
9







                        
                    


                          
                                                                                







                                       
                                     

                                                 
                                            
    
 
{ lib
, buildPythonPackage
, fetchPypi
, docutils
}:

buildPythonPackage rec {
  pname = "Pygments";
  version = "2.5.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "98c8aa5a9f778fcd1026a17361ddaf7330d1b7c62ae97c3bb0ae73e0b9b6b0fe";
  };

  propagatedBuildInputs = [ docutils ];

  # Circular dependency with sphinx
  doCheck = false;

  meta = {
    homepage = https://pygments.org/;
    description = "A generic syntax highlighter";
    license = lib.licenses.bsd2;
    maintainers = with lib.maintainers; [ ];
  };
}