Files
nixpkgs/pkgs/development/python-modules/srvlookup/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

42 lines
810 B
Nix

{ lib
, buildPythonPackage
, dnspython
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "srvlookup";
version = "3.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "gmr";
repo = pname;
rev = "refs/tags/${version}";
sha256 = "sha256-iXbi25HsoNX0hnhwZoFik5ddlJ7i+xml3HGaezj3jgY=";
};
propagatedBuildInputs = [
dnspython
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"srvlookup"
];
meta = with lib; {
description = "Wrapper for dnspython to return SRV records for a given host, protocol, and domain name";
homepage = "https://github.com/gmr/srvlookup";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ mmlb ];
};
}