lol

Merge pull request #91499 from danieldk/maturin-0.8.1

maturin: 0.8.0 -> 0.8.1

authored by

Mario Rodas and committed by
GitHub
29eb5258 c74657f9

+3 -21
-13
pkgs/development/tools/rust/maturin/Cargo.lock.patch
··· 1 - diff --git a/Cargo.lock b/Cargo.lock 2 - index 09ecb81..c37c646 100644 3 - --- a/Cargo.lock 4 - +++ b/Cargo.lock 5 - @@ -733,7 +733,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" 6 - 7 - [[package]] 8 - name = "maturin" 9 - -version = "0.8.0-beta.1" 10 - +version = "0.8.0" 11 - dependencies = [ 12 - "base64 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", 13 - "bytesize 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
+3 -8
pkgs/development/tools/rust/maturin/default.nix
··· 5 5 inherit (darwin.apple_sdk.frameworks) Security; 6 6 in rustPlatform.buildRustPackage rec { 7 7 name = "maturin-${version}"; 8 - version = "0.8.0"; 8 + version = "0.8.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "PyO3"; 12 12 repo = "maturin"; 13 13 rev = "v${version}"; 14 - sha256 = "1fjai0c0j8zzaj4c186dkbvx6cpj0vi3sc1qbjbgn2cm8azsd6m6"; 14 + sha256 = "16bxxa261k2l6mpdd55gyzl1mx756i0zbvqp15glpzlcwhb9bm2m"; 15 15 }; 16 16 17 - # The maturin 0.8.0 lockfile has an incorrect version for maturin 18 - # itself. The upstream lockfiles are normally correct, so this 19 - # should be removed post-0.8.0. 20 - cargoPatches = [ ./Cargo.lock.patch ]; 21 - 22 - cargoSha256 = "01sh523fi46k5xwdslhnmjz128jkdw47gp9bd8gim3ay13zkcn1i"; 17 + cargoSha256 = "1s1brfnhwl42jb37qqz4d8mxpyq2ck60jnmjfllkga3mhwm4r8px"; 23 18 24 19 nativeBuildInputs = [ pkgconfig ]; 25 20