1{ lib, buildPythonPackage, fetchPypi, isPy3k }:
2
3buildPythonPackage rec {
4 pname = "dominate";
5 version = "2.6.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "76ec2cde23700a6fc4fee098168b9dee43b99c2f1dd0ca6a711f683e8eb7e1e4";
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}