2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
buildPythonPackage,
|
|
|
|
pythonOlder,
|
|
|
|
fetchFromGitHub,
|
|
|
|
setuptools,
|
|
|
|
setuptools-scm,
|
|
|
|
more-itertools,
|
|
|
|
beautifulsoup4,
|
|
|
|
mechanize,
|
|
|
|
keyring,
|
|
|
|
requests,
|
|
|
|
feedparser,
|
|
|
|
icmplib,
|
|
|
|
jaraco-text,
|
|
|
|
jaraco-logging,
|
|
|
|
jaraco-email,
|
|
|
|
jaraco-functools,
|
|
|
|
jaraco-collections,
|
|
|
|
path,
|
|
|
|
python-dateutil,
|
|
|
|
pathvalidate,
|
|
|
|
jsonpickle,
|
|
|
|
ifconfig-parser,
|
|
|
|
pytestCheckHook,
|
|
|
|
cherrypy,
|
|
|
|
importlib-resources,
|
|
|
|
pyparsing,
|
|
|
|
requests-mock,
|
|
|
|
nettools,
|
2023-02-02 18:25:31 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jaraco-net";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "10.2.0";
|
2023-02-02 18:25:31 +00:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
|
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jaraco";
|
|
|
|
repo = "jaraco.net";
|
|
|
|
rev = "refs/tags/v${version}";
|
2024-04-21 15:54:59 +00:00
|
|
|
hash = "sha256-z9+gz6Sos0uluU5icXJN9OMmWFErVrJXBvoBcKv6Wwg=";
|
2023-02-02 18:25:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
setuptools
|
|
|
|
setuptools-scm
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
more-itertools
|
|
|
|
beautifulsoup4
|
|
|
|
mechanize
|
|
|
|
keyring
|
|
|
|
requests
|
|
|
|
feedparser
|
2024-04-21 15:54:59 +00:00
|
|
|
icmplib
|
2023-08-04 22:07:22 +00:00
|
|
|
jaraco-text
|
|
|
|
jaraco-logging
|
2023-02-02 18:25:31 +00:00
|
|
|
jaraco-email
|
2023-08-04 22:07:22 +00:00
|
|
|
jaraco-functools
|
|
|
|
jaraco-collections
|
2023-02-02 18:25:31 +00:00
|
|
|
path
|
|
|
|
python-dateutil
|
|
|
|
pathvalidate
|
|
|
|
jsonpickle
|
2024-09-26 11:04:55 +00:00
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ ifconfig-parser ];
|
2023-02-02 18:25:31 +00:00
|
|
|
|
|
|
|
pythonImportsCheck = [ "jaraco.net" ];
|
|
|
|
|
|
|
|
nativeCheckInputs = [
|
|
|
|
pytestCheckHook
|
|
|
|
cherrypy
|
|
|
|
importlib-resources
|
2023-03-15 16:39:30 +00:00
|
|
|
pyparsing
|
2023-02-02 18:25:31 +00:00
|
|
|
requests-mock
|
2024-09-26 11:04:55 +00:00
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ nettools ];
|
2023-02-02 18:25:31 +00:00
|
|
|
|
|
|
|
disabledTestPaths = [
|
|
|
|
# doesn't actually contain tests
|
|
|
|
"fabfile.py"
|
|
|
|
# require networking
|
|
|
|
"jaraco/net/ntp.py"
|
|
|
|
"jaraco/net/scanner.py"
|
|
|
|
"tests/test_cookies.py"
|
|
|
|
];
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
# cherrypy does not support Python 3.11
|
|
|
|
doCheck = pythonOlder "3.11";
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
meta = {
|
|
|
|
changelog = "https://github.com/jaraco/jaraco.net/blob/${src.rev}/CHANGES.rst";
|
|
|
|
description = "Networking tools by jaraco";
|
|
|
|
homepage = "https://github.com/jaraco/jaraco.net";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
|
|
};
|
|
|
|
}
|