nixpkgs/pkgs/development/python-modules/html5tagger/default.nix
Martin Weinelt 0ef17cbd0c python310Packages.html5tagger: init at 1.3.0
Introduced for sanic upgrade.
2023-07-28 12:15:37 +02:00

39 lines
734 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools-scm
}:
buildPythonPackage rec {
pname = "html5tagger";
version = "1.3.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "sanic-org";
repo = "html5tagger";
rev = "v${version}";
hash = "sha256-Or0EizZC9FMjTcbgecDvgGB09KNGyxHreSDojgB7ysg=";
};
env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools-scm
];
# no tests
doCheck = false;
pythonImportsCheck = [
"html5tagger"
];
meta = with lib; {
description = "Create HTML documents from Python";
homepage = "https://github.com/sanic-org/html5tagger";
license = licenses.unlicense;
maintainers = with maintainers; [ ];
};
}