summary refs log tree commit diff
path: root/pkgs/development/python-modules/sniffio/default.nix
blob: f5674c09e0216962243bb2ed649ed92539ae321e (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
{ buildPythonPackage, lib, fetchPypi, glibcLocales, isPy3k, contextvars
, pythonOlder, pytest, curio
}:

buildPythonPackage rec {
  pname = "sniffio";
  version = "1.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "8e3810100f69fe0edd463d02ad407112542a11ffdc29f67db2bf3771afb87a21";
  };

  disabled = !isPy3k;

  buildInputs = [ glibcLocales ];

  propagatedBuildInputs = lib.optionals (pythonOlder "3.7") [ contextvars ];

  checkInputs = [ pytest curio ];

  checkPhase = ''
    pytest
  '';

  meta = with lib; {
    homepage = https://github.com/python-trio/sniffio;
    license = licenses.asl20;
    description = "Sniff out which async library your code is running under";
  };
}