Merge pull request #67786 from danieldk/maturin

maturin: 0.6.1 -> 0.7.0
This commit is contained in:
Maximilian Bosch 2019-08-31 01:44:25 +02:00 committed by GitHub
commit 1a1d1bc389
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 7 deletions

View File

@ -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;

View File

@ -287,6 +287,7 @@ mapAliases ({
ppl-address-book = throw "deprecated in 2019-05-02: abandoned by upstream.";
processing3 = processing; # added 2019-08-16
procps-ng = procps; # added 2018-06-08
pyo3-pack = maturin;
pulseaudioLight = pulseaudio; # added 2018-04-25
qca-qt5 = libsForQt5.qca-qt5; # added 2015-12-19
qt_gstreamer = qt-gstreamer; # added 2017-02

View File

@ -8361,7 +8361,7 @@ in
inherit (darwin.apple_sdk.frameworks) Security;
};
pyo3-pack = callPackage ../development/tools/rust/pyo3-pack { };
maturin = callPackage ../development/tools/rust/maturin { };
rainicorn = callPackage ../development/tools/rust/rainicorn { };
inherit (rustPackages) rls;
rustfmt = rustPackages.rustfmt;