python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / html5tagger / default.nix
blob527e3660481b17011c6f1bca34695027c4710b8a
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools-scm,
6 }:
8 buildPythonPackage rec {
9   pname = "html5tagger";
10   version = "1.3.0";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "sanic-org";
15     repo = "html5tagger";
16     rev = "v${version}";
17     hash = "sha256-Or0EizZC9FMjTcbgecDvgGB09KNGyxHreSDojgB7ysg=";
18   };
20   nativeBuildInputs = [ setuptools-scm ];
22   # no tests
23   doCheck = false;
25   pythonImportsCheck = [ "html5tagger" ];
27   meta = with lib; {
28     description = "Create HTML documents from Python";
29     homepage = "https://github.com/sanic-org/html5tagger";
30     license = licenses.unlicense;
31     maintainers = [ ];
32   };