Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / html5tagger / default.nix
blobe9a96b8ddd113dc14c44b59f804d7d177bdb80d8
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , setuptools-scm
5 }:
7 buildPythonPackage rec {
8   pname = "html5tagger";
9   version = "1.3.0";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "sanic-org";
14     repo = "html5tagger";
15     rev = "v${version}";
16     hash = "sha256-Or0EizZC9FMjTcbgecDvgGB09KNGyxHreSDojgB7ysg=";
17   };
19   nativeBuildInputs = [
20     setuptools-scm
21   ];
23   # no tests
24   doCheck = false;
26   pythonImportsCheck = [
27     "html5tagger"
28   ];
30   meta = with lib; {
31     description = "Create HTML documents from Python";
32     homepage = "https://github.com/sanic-org/html5tagger";
33     license = licenses.unlicense;
34     maintainers = with maintainers; [ ];
35   };