about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sphinx_rtd_theme/default.nix
blob: 6ce714c9a31067fdcdd09af3f880e6d520318f08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv
, buildPythonPackage
, fetchPypi
, sphinx
}:

buildPythonPackage rec {
  pname = "sphinx_rtd_theme";
  version = "0.4.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "02f02a676d6baabb758a20c7a479d58648e0f64f13e07d1b388e9bb2afe86a09";
  };

  propagatedBuildInputs = [ sphinx ];

  meta = with stdenv.lib; {
    description = "ReadTheDocs.org theme for Sphinx";
    homepage = https://github.com/snide/sphinx_rtd_theme/;
    license = licenses.bsd3;
    platforms = platforms.unix;
  };

}