fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
59 lines
1.4 KiB
Nix
59 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
pyyaml,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-hosts";
|
|
version = "1.0.6";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-LfWfBzJ3UyArcHxrIUDsIa8pIr1WkUikf6F6v+IVLG4=";
|
|
};
|
|
|
|
# win_inet_pton is required for Windows support
|
|
prePatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "install_requires=['win_inet_pton']," ""
|
|
substituteInPlace python_hosts/utils.py \
|
|
--replace "import win_inet_pton" ""
|
|
'';
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
nativeCheckInputs = [
|
|
pyyaml
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "python_hosts" ];
|
|
|
|
disabledTests = [
|
|
# Tests require network access
|
|
"test_import_from_url_counters_for_part_success"
|
|
"test_import_from_url_with_force"
|
|
"test_import_from_url_without_force"
|
|
"test_import_from_url"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library for managing a hosts file";
|
|
longDescription = ''
|
|
python-hosts is a Python library for managing a hosts file. It enables you to add
|
|
and remove entries, or import them from a file or URL.
|
|
'';
|
|
homepage = "https://github.com/jonhadfield/python-hosts";
|
|
changelog = "https://github.com/jonhadfield/python-hosts/blob/${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ psyanticy ];
|
|
};
|
|
}
|