1 { lib, buildPythonPackage, fetchPypi, pygments }:
3 buildPythonPackage rec {
4 pname = "pygments-style-github";
9 hash = "sha256-D8q9IxR9VMhiQPYhZ4xTyZin3vqg0naRHB8t7wpF9Kc=";
12 # no tests exist on upstream repo
15 propagatedBuildInputs = [ pygments ];
17 pythonImportsCheck = [ "pygments_style_github" ];
20 description = "A port of the github color scheme for pygments";
21 homepage = "https://github.com/hugomaiavieira/pygments-style-github";
22 license = licenses.bsd3;
23 maintainers = with maintainers; [ drupol ];