summary refs log tree commit diff
path: root/pkgs/development/python-modules/url-normalize/default.nix
blob: 3032f7791a704ef9ddc8a9265e9de6c91f6673a1 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, poetry-core
, pytest-flakes
, pytest-mock
, pytest-socket
, pytestCheckHook
, six
}:

buildPythonPackage rec {
  pname = "url-normalize";
  version = "1.4.3";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "niksite";
    repo = pname;
    rev = version;
    hash = "sha256-WE3MM9B/voI23taFbLp2FYhl0uxOfuUWsaCTBG1hyiY=";
  };

  nativeBuildInputs = [
    poetry-core
  ];

  propagatedBuildInputs = [
    six
  ];

  checkInputs = [
    pytest-flakes
    pytest-mock
    pytest-socket
    pytestCheckHook
  ];

  patches = [
    # Switch to poetry-core, https://github.com/niksite/url-normalize/pull/28
    (fetchpatch {
      name = "switch-to-poetry-core.patch";
      url = "https://github.com/niksite/url-normalize/commit/b8557b10c977b191cc9d37e6337afe874a24ad08.patch";
      sha256 = "sha256-SVCQATV9V6HbLmjOHs7V7eBagO0PuqZLubIJghBYfQQ=";
    })
  ];

  postPatch = ''
    sed -i "/--cov/d" tox.ini
    sed -i "/--flakes/d" tox.ini
  '';

  pythonImportsCheck = [
    "url_normalize"
  ];

  meta = with lib; {
    description = "URL normalization for Python";
    homepage = "https://github.com/niksite/url-normalize";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}