1{ lib, buildPythonPackage, fetchPypi 2, pygments }: 3 4buildPythonPackage rec { 5 pname = "alabaster"; 6 version = "0.7.12"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "a661d72d58e6ea8a57f7a86e37d86716863ee5e92788398526d58b26a4e4dc02"; 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}