1{ lib
2, buildPythonPackage
3, fetchPypi
4, flake8
5, orderedmultidict
6, pytestCheckHook
7, six
8}:
9
10buildPythonPackage rec {
11 pname = "furl";
12 version = "2.1.3";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "5a6188fe2666c484a12159c18be97a1977a71d632ef5bb867ef15f54af39cc4e";
17 };
18
19 propagatedBuildInputs = [
20 orderedmultidict
21 six
22 ];
23
24 checkInputs = [
25 flake8
26 pytestCheckHook
27 ];
28
29 pythonImportsCheck = [ "furl" ];
30
31 meta = with lib; {
32 description = "Python library that makes parsing and manipulating URLs easy";
33 homepage = "https://github.com/gruns/furl";
34 license = licenses.unlicense;
35 maintainers = with maintainers; [ vanzef ];
36 };
37}