summary refs log tree commit diff
path: root/pkgs/development/python-modules/multidict/default.nix
blob: f850e58570e793eef03a431092f0b63b9dccb8fb (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
, pytest, pytestrunner
, isPy3k
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "5ba766433c30d703f6b2c17eb0b6826c6f898e5f58d89373e235f07764952314";
  };

  checkInputs = [ pytest pytestrunner ];

  disabled = !isPy3k;

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