about summary refs log tree commit diff
path: root/pkgs/development/tools/rust/maturin
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-08-16 00:46:28 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2023-08-16 00:46:28 +0000
commitd139cdace150e5641d83b969e94ec29e6677d746 (patch)
tree205faca924585c68b82790f5d6d1a76a79762dff /pkgs/development/tools/rust/maturin
parentb51db7ec1be773cc478a3f7060e04721f2a5c881 (diff)
maturin: 1.1.0 -> 1.2.0
Diffstat (limited to 'pkgs/development/tools/rust/maturin')
-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 6542dacbe9e75..edb8dbafd8649 100644
--- a/pkgs/development/tools/rust/maturin/default.nix
+++ b/pkgs/development/tools/rust/maturin/default.nix
@@ -9,16 +9,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "maturin";
-  version = "1.1.0";
+  version = "1.2.0";
 
   src = fetchFromGitHub {
     owner = "PyO3";
     repo = "maturin";
     rev = "v${version}";
-    hash = "sha256-UH+qOKKQdWXQZZMtrihbWmKaUoSy1NciGh9UTtS/W5E=";
+    hash = "sha256-HXp2jSTCZVpUS2vZzw+EOejDufIMNNA3+JpnbHIhZ/0=";
   };
 
-  cargoHash = "sha256-EGgVPRaofia+AwXSr6X4Aa8jbk5qDkXg1XvMoEp0qMQ=";
+  cargoHash = "sha256-Y5YmF58ji0kRYA1kgQZ2M/uJWGkWSSyTvxwCB07GMAI=";
 
   buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ];