about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/rfc6555/default.nix
blob: 4e47915bdf7678bc0f88775e9bc11defeb1e0699 (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
{ lib, 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 = with lib; {
    description = "Python implementation of the Happy Eyeballs Algorithm";
    homepage = "https://pypi.org/project/rfc6555";
    license = licenses.asl20;
    maintainers = with maintainers; [ endocrimes ];
  };
}