about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/multidict/default.nix
blob: 79646183fa18b36a0243dc266f527dfabbfb5f6c (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
38
39
40
41
42
{ lib
, stdenv
, fetchPypi
, buildPythonPackage
, pytestCheckHook
, pythonOlder
}:

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

  disabled = pythonOlder "3.7";

  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-NmaQZJLvt2RTwOe5fyz0WbBoLnQCwEialUhJZdvB2kk=";
  };

  postPatch = ''
    sed -i '/^addopts/d' setup.cfg
  '';

  NIX_CFLAGS_COMPILE = lib.optionals stdenv.cc.isClang [
    # error: incompatible pointer to integer conversion initializing 'int' with an expression of type 'void *'
    "-Wno-error=int-conversion"
  ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "multidict" ];

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