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

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

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

  checkInputs = [ pytestCheckHook pytestrunner pytestcov ];

  disabled = !isPy3k;

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