nixpkgs/pkgs/development/python-modules/dominate/default.nix

21 lines
543 B
Nix
Raw Normal View History

2018-08-14 19:33:31 +02:00
{ lib, buildPythonPackage, fetchPypi, isPy3k }:
buildPythonPackage rec {
pname = "dominate";
2018-10-06 12:56:16 +02:00
version = "2.3.4";
2018-08-14 19:33:31 +02:00
src = fetchPypi {
inherit pname version;
2018-10-06 12:56:16 +02:00
sha256 = "8dfcca2bde3937a2d03db6e55efcb0c0dea0d4ab0923dc983d794b19e9247328";
2018-08-14 19:33:31 +02:00
};
doCheck = !isPy3k;
meta = with lib; {
homepage = https://github.com/Knio/dominate/;
description = "Dominate is a Python library for creating and manipulating HTML documents using an elegant DOM API";
license = licenses.lgpl3;
maintainers = with maintainers; [ ];
};
}