diff options
Diffstat (limited to 'pkgs/development/python-modules/pycddl/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pycddl/default.nix | 46 |
1 files changed, 31 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/pycddl/default.nix b/pkgs/development/python-modules/pycddl/default.nix index 9cd2d1fab202..e55a0dc4bf1a 100644 --- a/pkgs/development/python-modules/pycddl/default.nix +++ b/pkgs/development/python-modules/pycddl/default.nix @@ -1,26 +1,31 @@ -{ lib -, pythonOlder -, fetchPypi -, buildPythonPackage -, rustPlatform -, pytestCheckHook -, psutil -, cbor2 +{ + lib, + pythonOlder, + fetchPypi, + buildPythonPackage, + rustPlatform, + pytestCheckHook, + psutil, + cbor2, + hypothesis, }: buildPythonPackage rec { pname = "pycddl"; - version = "0.5.2"; - format = "pyproject"; + version = "0.6.3"; + pyproject = true; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-LdecJPSov2Y/QI4MWb20DcF0EtMuDO0VwiQDUeD55GI="; + hash = "sha256-lVybSr+QvyepdTZfiTjqU0ENu6TT87ZZXIECBA8nMV4="; }; - nativeBuildInputs = with rustPlatform; [ maturinBuildHook cargoSetupHook ]; + nativeBuildInputs = with rustPlatform; [ + maturinBuildHook + cargoSetupHook + ]; postPatch = '' # We don't place pytest-benchmark in the closure because we have no @@ -37,10 +42,21 @@ buildPythonPackage rec { cargoDeps = rustPlatform.fetchCargoTarball { inherit src; name = "${pname}-${version}"; - hash = "sha256-FJET2Xb1cq4aePFhPXpp2oEPIOtpugYWNFAa2Dj0F6Y="; + hash = "sha256-VpJ/PLAwwuakwsNAtLDdWGXCxl6jGMTvsEhzIHk6a0g="; }; - nativeCheckInputs = [ pytestCheckHook psutil cbor2 ]; + nativeCheckInputs = [ + hypothesis + pytestCheckHook + psutil + cbor2 + ]; + + disabledTests =[ + # flaky + "test_memory_usage" + ]; + pythonImportsCheck = [ "pycddl" ]; meta = with lib; { |