1{ lib, buildPythonPackage, fetchPypi, isPy3k }:
2
3buildPythonPackage rec {
4 pname = "dominate";
5 version = "2.4.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1775cz6lipb43hmjll77m2pxh72pikng74lpg30v9n1b66s78959";
10 };
11
12 doCheck = !isPy3k;
13
14 meta = with lib; {
15 homepage = https://github.com/Knio/dominate/;
16 description = "Dominate is a Python library for creating and manipulating HTML documents using an elegant DOM API";
17 license = licenses.lgpl3;
18 maintainers = with maintainers; [ ];
19 };
20}