mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
0a094d1419
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-dominate/versions
21 lines
531 B
Nix
21 lines
531 B
Nix
{ lib, buildPythonPackage, fetchPypi, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dominate";
|
|
version = "2.4.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1775cz6lipb43hmjll77m2pxh72pikng74lpg30v9n1b66s78959";
|
|
};
|
|
|
|
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; [ ];
|
|
};
|
|
}
|