1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4, flit-core
5, pytestCheckHook
6, pythonOlder
7}:
8
9buildPythonPackage rec {
10 pname = "mdurl";
11 version = "0.1.2";
12 format = "pyproject";
13
14 disabled = pythonOlder "3.6";
15
16 src = fetchFromGitHub {
17 owner = "hukkin";
18 repo = pname;
19 rev = version;
20 sha256 = "sha256-wxV8DKeTwKpFTUBuGTQXaVHc0eW1//Y+2V8Kgs85TDM=";
21 };
22
23 nativeBuildInputs = [
24 flit-core
25 ];
26
27 checkInputs = [
28 pytestCheckHook
29 ];
30
31 pythonImportsCheck = [
32 "mdurl"
33 ];
34
35 meta = with lib; {
36 description = "URL utilities for markdown-it";
37 homepage = "https://github.com/hukkin/mdurl";
38 license = licenses.mit;
39 maintainers = with maintainers; [ fab ];
40 };
41}