depot/third_party/nixpkgs/pkgs/development/python-modules/ciscoconfparse/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

76 lines
1.7 KiB
Nix

{
lib,
buildPythonPackage,
deprecat,
dnspython,
fetchFromGitHub,
loguru,
passlib,
poetry-core,
pytestCheckHook,
pythonOlder,
toml,
}:
buildPythonPackage rec {
pname = "ciscoconfparse";
version = "1.7.24";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mpenning";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-vL/CQdYcOP356EyRToviWylP1EBtxmeov6qkhfQNZ2Y=";
};
pythonRelaxDeps = [ "loguru" ];
postPatch = ''
# The line below is in the [build-system] section, which is invalid and
# rejected by PyPA's build tool. It belongs in [project] but upstream has
# had problems with putting that there (see comment in pyproject.toml).
sed -i '/requires-python/d' pyproject.toml
substituteInPlace pyproject.toml \
--replace '"poetry>=1.3.2",' ""
patchShebangs tests
'';
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
passlib
deprecat
dnspython
loguru
toml
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTestPaths = [ "tests/parse_test.py" ];
disabledTests = [
# Tests require network access
"test_dns_lookup"
"test_reverse_dns_lookup"
# Path issues with configuration files
"testParse_valid_filepath"
];
pythonImportsCheck = [ "ciscoconfparse" ];
meta = with lib; {
description = "Module to parse, audit, query, build, and modify Cisco IOS-style configurations";
homepage = "https://github.com/mpenning/ciscoconfparse";
changelog = "https://github.com/mpenning/ciscoconfparse/blob/${version}/CHANGES.md";
license = licenses.gpl3Only;
maintainers = with maintainers; [ astro ];
};
}