about summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorDaniël de Kok <me@danieldk.eu>2019-08-30 20:59:44 +0200
committerDaniël de Kok <me@danieldk.eu>2019-08-30 20:59:44 +0200
commit7e29ce8a774ecf7831820feb3c82e69bf67c1fcb (patch)
tree7657312707d7dc8be7de9cbe11c85e8970dccc3a /pkgs/development/tools/rust
parent3b67af56d7ce482e7534ae20d6ad42211c0f42a7 (diff)
downloadnixlib-7e29ce8a774ecf7831820feb3c82e69bf67c1fcb.tar
nixlib-7e29ce8a774ecf7831820feb3c82e69bf67c1fcb.tar.gz
nixlib-7e29ce8a774ecf7831820feb3c82e69bf67c1fcb.tar.bz2
nixlib-7e29ce8a774ecf7831820feb3c82e69bf67c1fcb.tar.lz
nixlib-7e29ce8a774ecf7831820feb3c82e69bf67c1fcb.tar.xz
nixlib-7e29ce8a774ecf7831820feb3c82e69bf67c1fcb.tar.zst
nixlib-7e29ce8a774ecf7831820feb3c82e69bf67c1fcb.zip
maturin: 0.6.1 -> 0.7.0
pyo3-pack has been renamed to maturin version 0.7.0. Other larger
changes are:

- Mixed rust/python layout
- Added PEP 517 support
- Support settings all applicable fields from the python core
  metadata specification in Cargo.toml
Diffstat (limited to 'pkgs/development/tools/rust')
-rw-r--r--pkgs/development/tools/rust/maturin/default.nix (renamed from pkgs/development/tools/rust/pyo3-pack/default.nix)12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/tools/rust/pyo3-pack/default.nix b/pkgs/development/tools/rust/maturin/default.nix
index a17d50262a0e..4b07129ae0ef 100644
--- a/pkgs/development/tools/rust/pyo3-pack/default.nix
+++ b/pkgs/development/tools/rust/maturin/default.nix
@@ -4,17 +4,17 @@
 let
   inherit (darwin.apple_sdk.frameworks) Security;
 in rustPlatform.buildRustPackage rec {
-  name = "pyo3-pack-${version}";
-  version = "0.6.1";
+  name = "maturin-${version}";
+  version = "0.7.0";
 
   src = fetchFromGitHub {
     owner = "PyO3";
-    repo = "pyo3-pack";
+    repo = "maturin";
     rev = "v${version}";
-    sha256 = "0zk0jhr7lnl9z6c8pbk7si3wa8b1kqzj3wrslc1n5fjla7xx8fzn";
+    sha256 = "1qscn8ycyg9ldkp1v5178mlw8r5ak2p12x52c0w4hgij7y1q5s39";
   };
 
-  cargoSha256 = "13gycipxc17baxg8nvjzkw96i1pxgncx7qjcrm9aab7p9vi2vrih";
+  cargoSha256 = "0fk9dgwkgkkmxxd8ydl0vp14jhzi65pkz36v5h3nkp4cb4n4cvdj";
 
   nativeBuildInputs = [ pkgconfig ];
 
@@ -27,7 +27,7 @@ in rustPlatform.buildRustPackage rec {
 
   meta = with stdenv.lib; {
     description = "Build and publish crates with pyo3 bindings as python packages";
-    homepage = https://github.com/PyO3/pyo3-pack;
+    homepage = https://github.com/PyO3/maturin;
     license = licenses.mit;
     maintainers = [ maintainers.danieldk ];
     platforms = platforms.all;