nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.cmake-build-extension: refactor

+3 -2
+3 -2
pkgs/development/python-modules/cmake-build-extension/default.nix
··· 1 1 { 2 + lib, 2 3 buildPythonPackage, 3 4 cmake, 4 5 fetchFromGitHub, 5 6 gitpython, 6 - lib, 7 7 ninja, 8 8 setuptools, 9 9 setuptools-scm, ··· 17 17 src = fetchFromGitHub { 18 18 owner = "diegoferigo"; 19 19 repo = "cmake-build-extension"; 20 - rev = "v${version}"; 20 + tag = "v${version}"; 21 21 hash = "sha256-taAwxa7Sv+xc8xJRnNM6V7WPcL+TWZOkngwuqjAslzc="; 22 22 }; 23 23 ··· 35 35 dontUseCmakeConfigure = true; 36 36 37 37 pythonImportsCheck = [ "cmake_build_extension" ]; 38 + 38 39 doPythonRuntimeDepsCheck = false; 39 40 40 41 meta = {