about summary refs log tree commit diff
path: root/pkgs/development/python-modules/manuel/default.nix
blob: 1030ee21556247d8725fd841bc0f3fbd3f0693eb (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
, six
, zope_testing
}:

buildPythonPackage rec {
  pname = "manuel";
  version = "1.8.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1diyj6a8bvz2cdf9m0g2bbx9z2yjjnn3ylbg1zinpcjj6vldfx59";
  };

  propagatedBuildInputs = [ six zope_testing ];

  meta = with stdenv.lib; {
    description = "A documentation builder";
    homepage = https://pypi.python.org/pypi/manuel;
    license = licenses.zpl20;
  };

}