Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 20 lines 531 B view raw
1{ lib, buildPythonPackage, fetchPypi, isPy3k }: 2 3buildPythonPackage rec { 4 pname = "dominate"; 5 version = "2.3.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0lda2a4nxxh9wp727vhn31rl5v7y9fxkscdjawg7gzj50xf76xj0"; 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}