nixpkgs/pkgs/development/python-modules/yattag/default.nix
2023-03-06 16:31:06 +01:00

30 lines
545 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "yattag";
version = "1.15.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-lg+lS+EinZb0MXgTPgsZXAAzkf3Ens22tptzdNtr5BY=";
};
pythonImportsCheck = [
"yattag"
];
meta = with lib; {
description = "Library to generate HTML or XML";
homepage = "https://www.yattag.org/";
license = licenses.lgpl21Only;
maintainers = with maintainers; [ ];
};
}