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