summary refs log tree commit diff
path: root/pkgs/development/python-modules/multidict/default.nix
blob: ec19843ab9dc252d56ffb319d72fe88a5aade9e5 (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
{ lib
, fetchPypi
, buildPythonPackage
, pytestCheckHook, pytest-runner, pytest-cov
, isPy3k
}:

buildPythonPackage rec {
  pname = "multidict";
  version = "5.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "25b4e5f22d3a37ddf3effc0710ba692cfc792c2b9edfb9c05aefe823256e84d5";
  };

  checkInputs = [ pytestCheckHook pytest-runner pytest-cov ];

  disabled = !isPy3k;

  meta = with lib; {
    description = "Multidict implementation";
    homepage = "https://github.com/aio-libs/multidict/";
    license = licenses.asl20;
    maintainers = with maintainers; [ dotlambda ];
  };
}