nixpkgs/pkgs/development/python-modules/trio/default.nix

43 lines
1.0 KiB
Nix
Raw Normal View History

2018-05-08 23:19:48 +01:00
{ lib, buildPythonPackage, fetchPypi, pythonOlder
, attrs
, sortedcontainers
, async_generator
, idna
, outcome
, contextvars
, pytest
, pyopenssl
, trustme
}:
buildPythonPackage rec {
pname = "trio";
2018-08-25 06:51:09 +01:00
version = "0.6.0";
2018-05-08 23:19:48 +01:00
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
2018-08-25 06:51:09 +01:00
sha256 = "7a80c10b89068950aa649edd4b09a6f56236642c2c2e648b956289d2301fdb9e";
2018-05-08 23:19:48 +01:00
};
checkInputs = [ pytest pyopenssl trustme ];
# It appears that the build sandbox doesn't include /etc/services, and these tests try to use it.
checkPhase = ''
py.test -k 'not test_getnameinfo and not test_SocketType_resolve and not test_getprotobyname'
'';
propagatedBuildInputs = [
attrs
sortedcontainers
async_generator
idna
outcome
] ++ lib.optionals (pythonOlder "3.7") [ contextvars ];
meta = {
description = "An async/await-native I/O library for humans and snake people";
homepage = https://github.com/python-trio/trio;
license = with lib.licenses; [ mit asl20 ];
maintainers = with lib.maintainers; [ catern ];
};
}