maturin 0.14.17 -> 1.0.1 https://github.com/PyO3/maturin/releases attrpath: maturin Checking auto update branch... An auto update branch exists with message `maturin: 0.14.17 -> 1.0.0`. New version is 1.0.1. The auto update branch does not match or exceed the new version. Old version 0.14.17" not present in staging derivation file with contents: { callPackage , lib , stdenv , fetchFromGitHub , rustPlatform , pkg-config , dbus , libiconv , Security }: rustPlatform.buildRustPackage rec { pname = "maturin"; version = "1.0.0"; src = fetchFromGitHub { owner = "PyO3"; repo = "maturin"; rev = "v${version}"; hash = "sha256-Y/eqkA23gzoCmsFeYqZsK52e6s8ElIdKavL4ay9Q0Zs="; }; cargoHash = "sha256-fr7HuMfuErYyPhAdwvj+HluW/K4mSHW/kKcdnWOW1i4="; nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ]; buildInputs = lib.optionals stdenv.isLinux [ dbus ] ++ 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 = [ ]; }; }