6f2ce2a65e
I currently do not have much time to work on nixpkgs. Remove myself as a maintainer from a bunch of packages to avoid that people are waiting on me for a review.
43 lines
814 B
Nix
43 lines
814 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
, rustPlatform
|
|
}:
|
|
|
|
python3.pkgs.buildPythonPackage rec {
|
|
pname = "word-count";
|
|
version = "0.13.2";
|
|
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PyO3";
|
|
repo = "pyo3";
|
|
rev = "v${version}";
|
|
hash = "sha256-NOMrrfo8WjlPhtGxWUOPJS/UDDdbLQRCXR++Zd6JmIA=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.importCargoLock {
|
|
lockFile = ./Cargo.lock;
|
|
};
|
|
|
|
postPatch = ''
|
|
cp ${./Cargo.lock} Cargo.lock
|
|
'';
|
|
|
|
buildAndTestSubdir = "examples/word-count";
|
|
|
|
nativeBuildInputs = with rustPlatform; [
|
|
cargoSetupHook
|
|
maturinBuildHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "word_count" ];
|
|
|
|
meta = with lib; {
|
|
description = "PyO3 word count example";
|
|
homepage = "https://github.com/PyO3/pyo3";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|