depot/third_party/nixpkgs/pkgs/development/python-modules/rfc6555/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

28 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 ];
};
}