Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
879 B
Nix
47 lines
879 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
rustPlatform,
|
|
|
|
# These are always passed as an override or as a callPackage option.
|
|
nativeBuildInputs,
|
|
buildAndTestSubdir,
|
|
format,
|
|
preConfigure,
|
|
}:
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|