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