at master 625 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pygments, 6}: 7 8buildPythonPackage rec { 9 pname = "insegel"; 10 version = "1.3.1"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "1d055dd64f6eb335580a485271511ba2f4e3b5e315f48f827f58da3cace4b4ae"; 16 }; 17 18 propagatedBuildInputs = [ pygments ]; 19 20 # No tests included 21 doCheck = false; 22 23 pythonImportsCheck = [ "insegel" ]; 24 25 meta = with lib; { 26 homepage = "https://github.com/autophagy/insegel"; 27 description = "Monochrome 2 column Sphinx theme"; 28 license = licenses.mit; 29 maintainers = with maintainers; [ autophagy ]; 30 }; 31}