Files
nixpkgs/pkgs/development/python-modules/pycares/default.nix
R. RyanTM 15af3177d8 python36Packages.pycares: 1.0.0 -> 2.3.0 (#48983)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.6-pycares/versions
2018-10-29 13:59:34 +01:00

28 lines
485 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, pkgs
}:
buildPythonPackage rec {
pname = "pycares";
version = "2.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "0h4fxw5drrhfyslzmfpljk0qnnpbhhb20hnnndzahhbwylyw1x1n";
};
propagatedBuildInputs = [ pkgs.c-ares ];
# No tests included
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/saghul/pycares;
description = "Interface for c-ares";
license = licenses.mit;
};
}