nixpkgs/pkgs/by-name/co/conan/package.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

125 lines
3.0 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
git,
pkg-config,
xcbuild,
python3,
zlib,
}:
python3.pkgs.buildPythonApplication rec {
pname = "conan";
version = "2.9.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "conan-io";
repo = "conan";
rev = "refs/tags/${version}";
hash = "sha256-1KKXOvoSAemzafWvBoYFtxqgSObHcXe3GVPgG25VNm0=";
};
nativeBuildInputs = with python3.pkgs; [
];
propagatedBuildInputs =
with python3.pkgs;
[
bottle
colorama
python-dateutil
distro
fasteners
jinja2
patch-ng
pluginbase
pygments
pyjwt
pylint # Not in `requirements.txt` but used in hooks, see https://github.com/conan-io/conan/pull/6152
pyyaml
requests
tqdm
urllib3
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
idna
cryptography
pyopenssl
];
nativeCheckInputs =
[
git
pkg-config
zlib
]
++ lib.optionals (stdenv.hostPlatform.isDarwin) [
xcbuild.xcrun
]
++ (with python3.pkgs; [
mock
parameterized
pytest-xdist
pytestCheckHook
webtest
]);
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [
"conan"
];
disabledTests =
[
# Tests require network access
"TestFTP"
# Unstable test
"test_shared_windows_find_libraries"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# Rejects paths containing nix
"test_conditional_os"
# Requires Apple Clang
"test_detect_default_compilers"
"test_detect_default_in_mac_os_using_gcc_as_default"
# Incompatible with darwin.xattr and xcbuild from nixpkgs
"test_dot_files"
"test_xcrun"
"test_xcrun_in_required_by_tool_requires"
"test_xcrun_in_tool_requires"
];
disabledTestPaths = [
# Requires cmake, meson, autotools, apt-get, etc.
"test/functional/command/runner_test.py"
"test/functional/command/test_install_deploy.py"
"test/functional/layout/test_editable_cmake.py"
"test/functional/layout/test_editable_cmake_components.py"
"test/functional/layout/test_in_subfolder.py"
"test/functional/layout/test_source_folder.py"
"test/functional/test_local_recipes_index.py"
"test/functional/test_profile_detect_api.py"
"test/functional/toolchains/"
"test/functional/tools/scm/test_git.py"
"test/functional/tools/system/package_manager_test.py"
"test/functional/tools_versions_test.py"
"test/functional/util/test_cmd_args_to_string.py"
"test/integration/command/user_test.py"
"test/integration/command_v2/list_test.py"
"test/performance/test_large_graph.py"
"test/unittests/tools/env/test_env_files.py"
];
meta = with lib; {
description = "Decentralized and portable C/C++ package manager";
mainProgram = "conan";
homepage = "https://conan.io";
changelog = "https://github.com/conan-io/conan/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ HaoZeke ];
};
}