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