1{
2 fetchFromGitHub,
3 python3Packages,
4}: python3Packages.buildPythonApplication rec {
5 pname = "doc2dash";
6 version = "3.1.0";
7 pyproject = true;
8
9 src = fetchFromGitHub {
10 owner = "hynek";
11 repo = "doc2dash";
12 rev = version;
13 hash = "sha256-u6K+BDc9tUxq4kCekTaqQLtNN/OLVc3rh14sVSfPtoQ=";
14 };
15
16 build-system = with python3Packages; [ hatchling hatch-vcs hatch-fancy-pypi-readme];
17
18 dependencies = with python3Packages; [attrs beautifulsoup4 click rich];
19
20 nativeCheckInputs = with python3Packages; [
21 pytestCheckHook
22 pytest-cov-stub
23 ];
24}