summary refs log tree commit diff
path: root/pkgs/development/python-modules/alabaster/default.nix
blob: a2a35f852a3d6b7191ba91dffda13f4d2bbc37a1 (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
{ stdenv, buildPythonPackage, fetchPypi
, pygments }:

buildPythonPackage rec {
  pname = "alabaster";
  version = "0.7.11";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b63b1f4dc77c074d386752ec4a8a7517600f6c0db8cd42980cae17ab7b3275d7";
  };

  propagatedBuildInputs = [ pygments ];

  # No tests included
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = https://github.com/bitprophet/alabaster;
    description = "A Sphinx theme";
    license = licenses.bsd3;
  };
}