summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-06-04 04:23:40 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2023-06-04 04:23:40 +0000
commiteacc4e2d243385517aca8fe8924a913c0ebf94c3 (patch)
tree9a9456b32042d2e312af4f72ed2197599ef6247c
parentdd4982554e18b936790da07c4ea2db7c7600f283 (diff)
downloadnixpkgs-eacc4e2d243385517aca8fe8924a913c0ebf94c3.tar
nixpkgs-eacc4e2d243385517aca8fe8924a913c0ebf94c3.tar.gz
nixpkgs-eacc4e2d243385517aca8fe8924a913c0ebf94c3.tar.bz2
nixpkgs-eacc4e2d243385517aca8fe8924a913c0ebf94c3.tar.lz
nixpkgs-eacc4e2d243385517aca8fe8924a913c0ebf94c3.tar.xz
nixpkgs-eacc4e2d243385517aca8fe8924a913c0ebf94c3.tar.zst
nixpkgs-eacc4e2d243385517aca8fe8924a913c0ebf94c3.zip
maturin: 1.0.0 -> 1.0.1
-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 ea639874edd..27691c748a9 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 = "1.0.0";
+  version = "1.0.1";
 
   src = fetchFromGitHub {
     owner = "PyO3";
     repo = "maturin";
     rev = "v${version}";
-    hash = "sha256-Y/eqkA23gzoCmsFeYqZsK52e6s8ElIdKavL4ay9Q0Zs=";
+    hash = "sha256-iVN6LpikU+TP4P9ZJUVQR/ZNkRHjYLgdDA0aQeWMZfA=";
   };
 
-  cargoHash = "sha256-fr7HuMfuErYyPhAdwvj+HluW/K4mSHW/kKcdnWOW1i4=";
+  cargoHash = "sha256-iX4cbZ0PV0/o42f1QKNlAkwHEif2fu+RvhdzH7tWOZE=";
 
   nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];