2021-01-19 07:50:56 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, dbus, gmp, openssl, pkg-config
|
2021-02-12 10:45:00 +01:00
|
|
|
, Security }:
|
2018-10-30 16:36:21 +01:00
|
|
|
|
2021-02-12 10:45:00 +01:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2021-02-11 15:04:30 +01:00
|
|
|
pname = "maturin";
|
2021-01-20 07:31:48 +01:00
|
|
|
version = "0.9.0";
|
2018-10-30 16:36:21 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "PyO3";
|
2019-08-30 20:59:44 +02:00
|
|
|
repo = "maturin";
|
2018-10-30 16:36:21 +01:00
|
|
|
rev = "v${version}";
|
2021-01-20 07:31:48 +01:00
|
|
|
sha256 = "sha256-X5/1zEVhhdTuyXcUwC3jVv9Gblmv8LT+ftsVo8BnnZs=";
|
2018-10-30 16:36:21 +01:00
|
|
|
};
|
|
|
|
|
2021-01-20 07:31:48 +01:00
|
|
|
cargoSha256 = "sha256-PBmuPIpCwC7fr/MKFaeSd/0avoEATlxoeMHisjouAeI=";
|
2018-10-30 16:36:21 +01:00
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2018-10-30 16:36:21 +01:00
|
|
|
|
|
|
|
buildInputs = [ gmp openssl ]
|
2021-01-23 13:26:19 +01:00
|
|
|
++ lib.optional stdenv.isDarwin Security
|
|
|
|
++ lib.optional stdenv.isLinux dbus;
|
2018-10-30 16:36:21 +01:00
|
|
|
|
|
|
|
# Requires network access, fails in sandbox.
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-10-30 16:36:21 +01:00
|
|
|
description = "Build and publish crates with pyo3 bindings as python packages";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/PyO3/maturin";
|
2018-10-30 16:36:21 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.danieldk ];
|
|
|
|
};
|
|
|
|
}
|