39 lines
631 B
Nix
39 lines
631 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, c-ares
|
|
, cffi
|
|
, fetchPypi
|
|
, idna
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pycares";
|
|
version = "4.0.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-0BVPxXU7CIdY++ybwTfhsku4T8DGoJclyLrCWjQjEc0=";
|
|
};
|
|
|
|
buildInputs = [
|
|
c-ares
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
cffi
|
|
idna
|
|
];
|
|
|
|
# Requires network access
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pycares" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python interface for c-ares";
|
|
homepage = "https://github.com/saghul/pycares";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|