about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/mwlib-rl/default.nix
blob: d27de2ed45cc60276efbc16bffe7916589ec524b (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
26
27
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, mwlib
, mwlib-ext
, pygments
}:

buildPythonPackage rec {
  version = "0.14.5";
  pname = "mwlib.rl";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "dddf9603ea0ca5aa87890217709eb5a5b16baeca547db3daad43c3ace73b6bc1";
  };

  buildInputs = [ mwlib mwlib-ext pygments ];

  meta = with lib; {
    description = "Generate pdfs from mediawiki markup";
    homepage = "http://pediapress.com/code/";
    license = licenses.bsd3;
  };

}