about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/html5tagger/default.nix
blob: 42bc3aa18ad6c608fb4ef7ba4f3988a8289484eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ 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; [ ];
  };
}