maturin: 0.9.0 -> 0.9.1 (#113033)
This commit is contained in:
parent
93c4bade49
commit
cbc5852d20
@ -9,16 +9,16 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "maturin";
|
pname = "maturin";
|
||||||
version = "0.9.0";
|
version = "0.9.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "PyO3";
|
owner = "PyO3";
|
||||||
repo = "maturin";
|
repo = "maturin";
|
||||||
rev = "v${version}";
|
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 ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
@ -29,9 +29,17 @@ rustPlatform.buildRustPackage rec {
|
|||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
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";
|
homepage = "https://github.com/PyO3/maturin";
|
||||||
license = licenses.mit;
|
license = licenses.asl20;
|
||||||
maintainers = [ maintainers.danieldk ];
|
maintainers = [ maintainers.danieldk ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user