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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-99ujPq++59vIOWNTSyXnL4FsztSKxTGR7mC/zGKTORg=";
  };

  propagatedBuildInputs = [
    orderedmultidict
    six
  ];

  checkInputs = [
    flake8
    pytestCheckHook
  ];

  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 ];
  };
}