core/pkgs/by-name/ma/maturin/pyo3-test/generic.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
923 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
# 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 = with lib; {
description = "PyO3 word count example";
homepage = "https://github.com/PyO3/pyo3";
license = licenses.asl20;
maintainers = [ ];
};
}