maturin: 0.9.0 -> 0.9.1 (#113033)

This commit is contained in:
Daniël de Kok 2021-02-14 03:24:18 +01:00 committed by GitHub
parent 93c4bade49
commit cbc5852d20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,16 +9,16 @@
rustPlatform.buildRustPackage rec {
pname = "maturin";
version = "0.9.0";
version = "0.9.1";
src = fetchFromGitHub {
owner = "PyO3";
repo = "maturin";
rev = "v${version}";
hash = "sha256-X5/1zEVhhdTuyXcUwC3jVv9Gblmv8LT+ftsVo8BnnZs=";
hash = "sha256-0HD/wtHCbaJ0J+TC6k2xvWsCMnpdJbvivW/UM3g+Gss=";
};
cargoHash = "sha256-PBmuPIpCwC7fr/MKFaeSd/0avoEATlxoeMHisjouAeI=";
cargoHash = "sha256-bH9NQg7wJUe0MHkbt4DbjZEEVYZiVCwSbL4A/H+6WDs=";
nativeBuildInputs = [ pkg-config ];
@ -29,9 +29,17 @@ rustPlatform.buildRustPackage rec {
doCheck = false;
meta = with lib; {
description = "Build and publish crates with pyo3 bindings as python packages";
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.
'';
homepage = "https://github.com/PyO3/maturin";
license = licenses.mit;
license = licenses.asl20;
maintainers = [ maintainers.danieldk ];
};
}