nixpkgs/pkgs/development/python-modules/rfc6555/default.nix
Dima b199e30680
rfc6555: selectively disable networked tests
(incl. tiny nitpicks from vcunat)
2019-09-08 09:59:55 +02:00

29 lines
834 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, pythonPackages }:
buildPythonPackage rec {
pname = "rfc6555";
version = "0.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "05sjrd6jc0sdvx0z7d3llk82rx366jlmc7ijam0nalsv66hbn70r";
};
propagatedBuildInputs = with pythonPackages; [ selectors2 ];
checkInputs = with pythonPackages; [ mock pytest ];
# disabling tests that require a functional DNS IPv{4,6} stack to pass.
patches = [ ./disable_network_tests.patch ];
# default doCheck = true; is not enough, apparently
postCheck = ''
py.test tests/
'';
meta = {
description = "Python implementation of the Happy Eyeballs Algorithm";
homepage = "https://pypi.org/project/rfc6555";
license = stdenv.lib.licenses.asl20;
maintainers = with stdenv.lib.maintainers; [ endocrimes ];
};
}