about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/furl/default.nix
blob: da52bfb8fbcdeca98ecae08b67803fea03c36b59 (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
{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
, flake8
, orderedmultidict
, pytestCheckHook
, six
}:

buildPythonPackage rec {
  pname = "furl";
  version = "2.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "08dnw3bs1mk0f1ccn466a5a7fi1ivwrp0jspav9arqpf3wd27q60";
  };

  patches = [
    (fetchpatch {
      name = "tests_overcome_bpo42967.patch";
      url = "https://github.com/gruns/furl/files/6030371/tests_overcome_bpo42967.patch.txt";
      sha256 = "1l0lxmcp9x73kxy0ky2bh7zxa4n1cf1qxyyax97n90d1s3dc7k2q";
    })
  ];

  propagatedBuildInputs = [
    orderedmultidict
    six
  ];

  checkInputs = [
    flake8
    pytestCheckHook
  ];

  disabledTests = [
     # see https://github.com/gruns/furl/issues/121
    "join"
  ];

  pythonImportsCheck = [ "furl" ];

  meta = with lib; {
    description = "Python library that makes parsing and manipulating URLs easy";
    homepage = "https://github.com/gruns/furl";
    license = licenses.unlicense;
    maintainers = with maintainers; [ vanzef ];
  };
}