summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-05-21 10:44:35 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2023-05-21 10:44:35 +0200
commite42b89ffbac888e3b7125fcc6e6314d8fc84a6c8 (patch)
treec55319437513ea0b0aba94d343cadb556e1f8999
parentb7a9deb5bd778e53be505ce8d10f524a86d34e07 (diff)
downloadnixpkgs-e42b89ffbac888e3b7125fcc6e6314d8fc84a6c8.tar
nixpkgs-e42b89ffbac888e3b7125fcc6e6314d8fc84a6c8.tar.gz
nixpkgs-e42b89ffbac888e3b7125fcc6e6314d8fc84a6c8.tar.bz2
nixpkgs-e42b89ffbac888e3b7125fcc6e6314d8fc84a6c8.tar.lz
nixpkgs-e42b89ffbac888e3b7125fcc6e6314d8fc84a6c8.tar.xz
nixpkgs-e42b89ffbac888e3b7125fcc6e6314d8fc84a6c8.tar.zst
nixpkgs-e42b89ffbac888e3b7125fcc6e6314d8fc84a6c8.zip
conan: 2.0.0 -> 2.0.5
Changelog: https://github.com/conan-io/conan/releases/tag/2.0.5
-rw-r--r--pkgs/development/tools/build-managers/conan/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/development/tools/build-managers/conan/default.nix b/pkgs/development/tools/build-managers/conan/default.nix
index cb66df77e31..e58ffaefd30 100644
--- a/pkgs/development/tools/build-managers/conan/default.nix
+++ b/pkgs/development/tools/build-managers/conan/default.nix
@@ -9,14 +9,14 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "conan";
-  version = "2.0.0";
+  version = "2.0.5";
   format = "setuptools";
 
   src = fetchFromGitHub {
     owner = "conan-io";
     repo = "conan";
     rev = "refs/tags/${version}";
-    hash = "sha256-yx/MO5QAVKnGraQXJitXxaZooLtBqa+L04s73DwiE14=";
+    hash = "sha256-+ohUOQ9WBER/X0TDklf/qZCm9LhM1I1QRmED4FnkweM=";
   };
 
   propagatedBuildInputs = with python3.pkgs; [
@@ -71,13 +71,17 @@ python3.pkgs.buildPythonApplication rec {
     # Requires cmake, meson, autotools, apt-get, etc.
     "conans/test/functional/command/new_test.py"
     "conans/test/functional/command/test_install_deploy.py"
+    "conans/test/functional/graph/test_transitive_build_scripts.py"
+    "conans/test/functional/layout/test_editable_cmake_components.py"
     "conans/test/functional/layout/test_editable_cmake.py"
     "conans/test/functional/layout/test_in_subfolder.py"
     "conans/test/functional/layout/test_source_folder.py"
     "conans/test/functional/toolchains/"
     "conans/test/functional/tools_versions_test.py"
+    "conans/test/functional/tools/scm/test_git.py"
     "conans/test/functional/tools/system/package_manager_test.py"
     "conans/test/functional/util/test_cmd_args_to_string.py"
+    "conans/test/integration/command_v2/list_test.py"
     "conans/test/unittests/tools/env/test_env_files.py"
   ];