depot/third_party/nixpkgs/pkgs/development/python-modules/pycares/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

55 lines
915 B
Nix

{ lib
, aiodns
, buildPythonPackage
, c-ares
, cffi
, fetchPypi
, idna
, pythonOlder
, tornado
}:
buildPythonPackage rec {
pname = "pycares";
version = "4.3.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-xUJpb22sl46dmRkjhHRaZfgKfZRQUBFR5KdWPgYBDUU=";
};
buildInputs = [
c-ares
];
propagatedBuildInputs = [
cffi
idna
];
propagatedNativeBuildInputs = [
cffi
];
# Requires network access
doCheck = false;
passthru.tests = {
inherit aiodns tornado;
};
pythonImportsCheck = [
"pycares"
];
meta = with lib; {
description = "Python interface for c-ares";
homepage = "https://github.com/saghul/pycares";
changelog = "https://github.com/saghul/pycares/releases/tag/pycares-${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}