1{ lib, buildPythonPackage, fetchPypi 2, pygments }: 3 4buildPythonPackage rec { 5 pname = "alabaster"; 6 version = "0.7.13"; 7 8 src = fetchPypi { 9 inherit pname version; 10 hash = "sha256-onpKCE1eaQ4W4B4DrSsuVSxhplRpQZuQckMZPeGoSuI="; 11 }; 12 13 propagatedBuildInputs = [ pygments ]; 14 15 # No tests included 16 doCheck = false; 17 18 meta = with lib; { 19 homepage = "https://github.com/bitprophet/alabaster"; 20 description = "A Sphinx theme"; 21 license = licenses.bsd3; 22 }; 23}