summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniël de Kok <me@danieldk.eu>2021-05-22 10:02:33 +0200
committerDaniël de Kok <me@danieldk.eu>2021-05-22 10:02:33 +0200
commit604ea22f42d3a38c566071cf898e0d4f2bf30e99 (patch)
tree31e06a1aa5ab7df4be887ac5dba76a416b887189
parentaa53807ba7719565e547e683afaeba35e51e91eb (diff)
downloadnixpkgs-604ea22f42d3a38c566071cf898e0d4f2bf30e99.tar
nixpkgs-604ea22f42d3a38c566071cf898e0d4f2bf30e99.tar.gz
nixpkgs-604ea22f42d3a38c566071cf898e0d4f2bf30e99.tar.bz2
nixpkgs-604ea22f42d3a38c566071cf898e0d4f2bf30e99.tar.lz
nixpkgs-604ea22f42d3a38c566071cf898e0d4f2bf30e99.tar.xz
nixpkgs-604ea22f42d3a38c566071cf898e0d4f2bf30e99.tar.zst
nixpkgs-604ea22f42d3a38c566071cf898e0d4f2bf30e99.zip
maturin: 0.10.5 -> 0.10.6
Changelog:
https://github.com/PyO3/maturin/blob/main/Changelog.md#0106---2021-05-21
-rw-r--r--pkgs/development/tools/rust/maturin/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/rust/maturin/default.nix b/pkgs/development/tools/rust/maturin/default.nix
index 239425212e8..5ab47c8aa8d 100644
--- a/pkgs/development/tools/rust/maturin/default.nix
+++ b/pkgs/development/tools/rust/maturin/default.nix
@@ -11,16 +11,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "maturin";
-  version = "0.10.5";
+  version = "0.10.6";
 
   src = fetchFromGitHub {
     owner = "PyO3";
     repo = "maturin";
     rev = "v${version}";
-    hash = "sha256-wI5bk9LauIfT4aEo1pCtUicXn0mJb4ijqV0NI6rKL6k=";
+    hash = "sha256-qWDrdS1zxe5woQSKLHhDSGJ1KF4SHk1mhaQApJXCCO4=";
   };
 
-  cargoHash = "sha256-xLT3QeLDZnPrW1rCa0E1DrCYiqhb04o3vdi8pdJdWJQ=";
+  cargoHash = "sha256-NEXgb7yWQkqbbofd3oYQ5n+CmfaM2cWj8HwufrcRKkc=";
 
   nativeBuildInputs = [ pkg-config ];