nixpkgs/pkgs/development/tools/rust/maturin/default.nix

33 lines
869 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, dbus, gmp, openssl, pkg-config
, Security }:
2018-10-30 16:36:21 +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";
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
nativeBuildInputs = [ pkg-config ];
2018-10-30 16:36:21 +01:00
buildInputs = [ gmp openssl ]
++ 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;
meta = with lib; {
2018-10-30 16:36:21 +01:00
description = "Build and publish crates with pyo3 bindings as python packages";
homepage = "https://github.com/PyO3/maturin";
2018-10-30 16:36:21 +01:00
license = licenses.mit;
maintainers = [ maintainers.danieldk ];
};
}