about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiohttp-isal/default.nix
blob: dbaac3028777e08a41cf5bfb1ce8ab86667a975e (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{ lib
, buildPythonPackage
, fetchFromGitHub

# build-system
, poetry-core

# dependencies
, aiohttp
, isal

# tests
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "aiohttp-isal";
  version = "0.3.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "bdraco";
    repo = "aiohttp-isal";
    rev = "v${version}";
    hash = "sha256-rSXV5Z5JdznQGtRI83UIbaSfbIYkUHphJTVK/LM2V4U=";
  };

  build-system = [
    poetry-core
  ];

  dependencies = [
    aiohttp
    isal
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  preCheck = ''
    sed -i '/addopts/d' pyproject.toml
  '';

  pythonImportsCheck = [
    "aiohttp_isal"
  ];

  meta = with lib; {
    changelog = "https://github.com/bdraco/aiohttp-isal/blob/${src.rev}/CHANGELOG.md";
    description = "Isal support for aiohttp";
    homepage = "https://github.com/bdraco/aiohttp-isal";
    license = licenses.asl20;
    maintainers = with maintainers; [ hexa ];
  };
}