depot/third_party/nixpkgs/pkgs/by-name/ma/maturin/pyo3-test/generic.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

49 lines
917 B
Nix

# Derivation prototype, used by maturin and setuptools-rust
# passthrough tests.
{
lib,
fetchFromGitHub,
python,
rustPlatform,
nativeBuildInputs,
buildAndTestSubdir ? null,
format ? "pyproject",
preConfigure ? "",
}:
python.pkgs.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.importCargoLock { lockFile = ./Cargo.lock; };
postPatch = ''
ln -s ${./Cargo.lock} Cargo.lock
'';
inherit
buildAndTestSubdir
format
nativeBuildInputs
preConfigure
;
pythonImportsCheck = [ "word_count" ];
meta = {
description = "PyO3 word count example";
homepage = "https://github.com/PyO3/pyo3";
license = lib.licenses.asl20;
maintainers = [ ];
};
}