blob: da131e0158895b4507d4714aa73d6840d66f6f57 (
plain)
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
|
{
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=";
};
nativeBuildInputs = [ setuptools-scm ];
# no tests
doCheck = false;
pythonImportsCheck = [ "html5tagger" ];
meta = {
description = "Create HTML documents from Python";
homepage = "https://github.com/sanic-org/html5tagger";
license = lib.licenses.unlicense;
maintainers = [ ];
};
}
|