depot/third_party/nixpkgs/pkgs/development/python-modules/pycddl/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

69 lines
1.6 KiB
Nix

{
lib,
pythonOlder,
fetchPypi,
buildPythonPackage,
rustPlatform,
pytestCheckHook,
psutil,
cbor2,
hypothesis,
}:
buildPythonPackage rec {
pname = "pycddl";
version = "0.6.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-lVybSr+QvyepdTZfiTjqU0ENu6TT87ZZXIECBA8nMV4=";
};
nativeBuildInputs = with rustPlatform; [
maturinBuildHook
cargoSetupHook
];
postPatch = ''
# We don't place pytest-benchmark in the closure because we have no
# intention of running the benchmarks. Make sure pip doesn't fail as a
# result of it being missing by removing it from the requirements list.
sed -i -e /pytest-benchmark/d requirements-dev.txt
# Now that we've gotten rid of pytest-benchmark we need to get rid of the
# benchmarks too, otherwise they fail at import time due to the missing
# dependency.
rm tests/test_benchmarks.py
'';
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-VpJ/PLAwwuakwsNAtLDdWGXCxl6jGMTvsEhzIHk6a0g=";
};
nativeCheckInputs = [
hypothesis
pytestCheckHook
psutil
cbor2
];
disabledTests =[
# flaky
"test_memory_usage"
];
pythonImportsCheck = [ "pycddl" ];
meta = with lib; {
description = "Python bindings for the Rust cddl crate";
homepage = "https://gitlab.com/tahoe-lafs/pycddl";
changelog = "https://gitlab.com/tahoe-lafs/pycddl/-/tree/v${version}#release-notes";
license = licenses.mit;
maintainers = [ maintainers.exarkun ];
};
}