2021-02-12 09:47:30 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, pkg-config
|
|
|
|
, dbus
|
|
|
|
, Security
|
|
|
|
}:
|
2018-10-30 15:36:21 +00:00
|
|
|
|
2021-02-12 09:45:00 +00:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2021-02-11 14:04:30 +00:00
|
|
|
pname = "maturin";
|
2021-02-17 12:34:41 +00:00
|
|
|
version = "0.9.3";
|
2018-10-30 15:36:21 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "PyO3";
|
2019-08-30 19:59:44 +01:00
|
|
|
repo = "maturin";
|
2018-10-30 15:36:21 +00:00
|
|
|
rev = "v${version}";
|
2021-02-17 12:34:41 +00:00
|
|
|
hash = "sha256-3Tir9jvpSgjyF5tEn3xpPcpSATEnn9yaWIKE8hZIdsM=";
|
2018-10-30 15:36:21 +00:00
|
|
|
};
|
|
|
|
|
2021-02-17 12:34:41 +00:00
|
|
|
cargoHash = "sha256-o0+ZlGnnVUJiTqIdioj+geiP6PWz/AKCXhx+/TgKmqs=";
|
2018-10-30 15:36:21 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2018-10-30 15:36:21 +00:00
|
|
|
|
2021-02-12 09:54:10 +00:00
|
|
|
buildInputs = lib.optional stdenv.isLinux dbus
|
|
|
|
++ lib.optional stdenv.isDarwin Security;
|
2018-10-30 15:36:21 +00:00
|
|
|
|
|
|
|
# Requires network access, fails in sandbox.
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-02-14 02:24:18 +00:00
|
|
|
description = "Build and publish Rust crates Python packages";
|
|
|
|
longDescription = ''
|
|
|
|
Build and publish Rust crates with PyO3, rust-cpython, and
|
|
|
|
cffi bindings as well as Rust binaries as Python packages.
|
|
|
|
|
|
|
|
This project is meant as a zero-configuration replacement for
|
|
|
|
setuptools-rust and Milksnake. It supports building wheels for
|
|
|
|
Python and can upload them to PyPI.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/PyO3/maturin";
|
2021-02-14 02:24:18 +00:00
|
|
|
license = licenses.asl20;
|
2018-10-30 15:36:21 +00:00
|
|
|
maintainers = [ maintainers.danieldk ];
|
|
|
|
};
|
|
|
|
}
|