pyo3-pack 1.3.0 -> 1.4.0 https://github.com/PyO3/maturin/releases attrpath: pyo3-pack Checking auto update branch... No auto update branch exists Old version 1.3.0" not present in staging derivation file with contents: { callPackage , lib , stdenv , fetchFromGitHub , rustPlatform , libiconv , Security }: rustPlatform.buildRustPackage rec { pname = "maturin"; version = "1.4.0"; src = fetchFromGitHub { owner = "PyO3"; repo = "maturin"; rev = "v${version}"; hash = "sha256-mD/7wWeclV5Xqii9hcZMustvR6tf7MoyTZ3WsvEc61U="; }; cargoHash = "sha256-w8XpCJ8GS2VszW/9/O2suy82zVO1UpWTrU1lFGYwhvw="; buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ]; # Requires network access, fails in sandbox. doCheck = false; passthru.tests.pyo3 = callPackage ./pyo3-test {}; meta = with lib; { 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"; changelog = "https://github.com/PyO3/maturin/blob/v${version}/Changelog.md"; license = with licenses; [ asl20 /* or */ mit ]; maintainers = [ ]; }; }