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

buildPythonPackage rec {
  version = "0.13.2";
  pname = "mwlib.ext";
  disabled = isPy3k;

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

  meta = with lib; {
    description = "Dependencies for mwlib markup";
    homepage = "http://pediapress.com/code/";
    license = licenses.bsd3;
  };

}