23b612e36f
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
49 lines
1,004 B
Nix
49 lines
1,004 B
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, rustPlatform
|
|
, cargo
|
|
, rustc
|
|
, libiconv
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pdoc-pyo3-sample-library";
|
|
version = "1.0.11";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "pdoc_pyo3_sample_library";
|
|
inherit version;
|
|
hash = "sha256-ZGMo7WgymkSDQu8tc4rTfWNsIWO0AlDPG0OzpKRq3oA=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit pname version src;
|
|
hash = "sha256-KrEBr998AV/bKcIoq0tX72/QwPD9bQplrS0Zw+JiSMQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
rustPlatform.cargoSetupHook
|
|
rustPlatform.maturinBuildHook
|
|
cargo
|
|
rustc
|
|
];
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
libiconv
|
|
];
|
|
|
|
pythonImportsCheck = [ "pdoc_pyo3_sample_library" ];
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "A sample PyO3 library used in pdoc tests";
|
|
homepage = "https://github.com/mitmproxy/pdoc-pyo3-sample-library";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.pbsds ];
|
|
};
|
|
}
|