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

36 lines
601 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
2019-03-19 15:11:46 +00:00
, python
, c-ares
, cffi
}:
buildPythonPackage rec {
pname = "pycares";
version = "3.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "18dfd4fd300f570d6c4536c1d987b7b7673b2a9d14346592c5d6ed716df0d104";
};
2019-03-19 15:11:46 +00:00
buildInputs = [ c-ares ];
2019-03-19 15:11:46 +00:00
propagatedBuildInputs = [ cffi ];
checkPhase = ''
${python.interpreter} tests/tests.py
'';
# requires network access
doCheck = false;
meta = with lib; {
homepage = "https://github.com/saghul/pycares";
description = "Interface for c-ares";
license = licenses.mit;
};
}