2023-04-01 18:27:25 -04:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pythonOlder,
|
|
|
|
fetchPypi,
|
|
|
|
buildPythonPackage,
|
|
|
|
rustPlatform,
|
|
|
|
pytestCheckHook,
|
|
|
|
psutil,
|
|
|
|
cbor2,
|
2024-06-22 18:07:17 +02:00
|
|
|
hypothesis,
|
2023-04-01 18:27:25 -04:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pycddl";
|
2024-08-09 19:23:06 +02:00
|
|
|
version = "0.6.3";
|
2024-08-09 21:32:52 +02:00
|
|
|
pyproject = true;
|
2023-04-01 18:27:25 -04:00
|
|
|
|
2024-08-09 19:23:06 +02:00
|
|
|
disabled = pythonOlder "3.8";
|
2023-04-01 18:27:25 -04:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2024-08-09 19:23:06 +02:00
|
|
|
hash = "sha256-lVybSr+QvyepdTZfiTjqU0ENu6TT87ZZXIECBA8nMV4=";
|
2023-04-01 18:27:25 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2025-01-23 16:07:59 +01:00
|
|
|
cargoDeps = rustPlatform.fetchCargoVendor {
|
2025-05-30 04:18:04 +02:00
|
|
|
inherit pname version src;
|
2025-01-23 16:07:59 +01:00
|
|
|
hash = "sha256-Qep5YD4LQ+r118L5H+hUqeS00SibyvsbtLWDrJJBNc0=";
|
2023-04-01 18:27:25 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeCheckInputs = [
|
2024-06-22 18:07:17 +02:00
|
|
|
hypothesis
|
2023-04-01 18:27:25 -04:00
|
|
|
pytestCheckHook
|
|
|
|
psutil
|
|
|
|
cbor2
|
|
|
|
];
|
2024-06-22 18:07:17 +02:00
|
|
|
|
|
|
|
disabledTests = [
|
|
|
|
# flaky
|
|
|
|
"test_memory_usage"
|
|
|
|
];
|
|
|
|
|
2023-04-01 18:27:25 -04:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|