Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pygments-style-github / default.nix
blob918456774f57a420dd0b00309569418f88d9d72e
1 { lib, buildPythonPackage, fetchPypi, pygments }:
3 buildPythonPackage rec {
4   pname = "pygments-style-github";
5   version = "0.4";
7   src = fetchPypi {
8     inherit pname version;
9     hash = "sha256-D8q9IxR9VMhiQPYhZ4xTyZin3vqg0naRHB8t7wpF9Kc=";
10   };
12   # no tests exist on upstream repo
13   doCheck = false;
15   propagatedBuildInputs = [ pygments ];
17   pythonImportsCheck = [ "pygments_style_github" ];
19   meta = with lib; {
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 ];
24   };