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

buildPythonPackage rec {
  pname = "sphinx_rtd_theme";
  version = "0.2.5b2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0grf16fi4g0p3dfh11b1624ic34iqkjhf5i1g6hvsh4nlm0ll00q";
  };

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

}