about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycares/default.nix
blob: e233d8d70884f1d9c561c4daf9d329bbf6b9457b (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
32
33
34
35
{ stdenv
, buildPythonPackage
, fetchPypi
, python
, c-ares
, cffi
}:

buildPythonPackage rec {
  pname = "pycares";
  version = "3.1.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "18dfd4fd300f570d6c4536c1d987b7b7673b2a9d14346592c5d6ed716df0d104";
  };

  buildInputs = [ c-ares ];

  propagatedBuildInputs = [ cffi ];

  checkPhase = ''
    ${python.interpreter} tests/tests.py
  '';

  # requires network access
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = "https://github.com/saghul/pycares";
    description = "Interface for c-ares";
    license = licenses.mit;
  };

}