3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/rust/maturin/pyo3-test/generic.nix

46 lines
1,019 B
Nix
Raw Normal View History

# Derivation prototype, used by maturin and setuptools-rust
# passthrough tests.
{ lib
, fetchFromGitHub
, python3Packages
, rustPlatform
, nativeBuildInputs
, buildAndTestSubdir ? null
, format ? "pyproject"
, sourceRoot ? "source"
}:
python3Packages.buildPythonPackage rec {
pname = "word-count";
version = "0.13.2";
src = fetchFromGitHub {
owner = "PyO3";
repo = "pyo3";
rev = "v${version}";
hash = "sha256-NOMrrfo8WjlPhtGxWUOPJS/UDDdbLQRCXR++Zd6JmIA=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src sourceRoot patches;
name = "${pname}-${version}";
hash = "sha256-//TmozgWy9zrSpMKX92XdHj4fw/T1Elfgn4YhhR7ot0=";
};
patches = [ ./Cargo.lock.patch ];
inherit buildAndTestSubdir format nativeBuildInputs sourceRoot;
pythonImportsCheck = [ "word_count" ];
meta = with lib; {
description = "PyO3 word count example";
homepage = "https://github.com/PyO3/pyo3";
license = licenses.asl20;
maintainers = [ maintainers.danieldk ];
};
}