nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python310Packages.flow-record: 3.5 -> 3.7

+9 -2
+9 -2
pkgs/development/python-modules/flow-record/default.nix
··· 8 8 , pythonOlder 9 9 , setuptools 10 10 , setuptools-scm 11 + , wheel 11 12 , zstandard 12 13 }: 13 14 14 15 buildPythonPackage rec { 15 16 pname = "flow-record"; 16 - version = "3.5"; 17 + version = "3.7"; 17 18 format = "pyproject"; 18 19 19 20 disabled = pythonOlder "3.7"; ··· 23 22 owner = "fox-it"; 24 23 repo = "flow.record"; 25 24 rev = version; 26 - hash = "sha256-hULz5pIqCKujVH3SpzFgzNM9R7WTtqAmuNOxG7VlUd0="; 25 + hash = "sha256-bXI7q+unlrXvagKisAO4INfzeXlC4g918xmPmwMDCK8="; 27 26 }; 28 27 29 28 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 31 30 nativeBuildInputs = [ 32 31 setuptools 33 32 setuptools-scm 33 + wheel 34 34 ]; 35 35 36 36 propagatedBuildInputs = [ ··· 59 57 disabledTestPaths = [ 60 58 # Test requires rdump 61 59 "tests/test_rdump.py" 60 + ]; 61 + 62 + 63 + disabledTests = [ 64 + "test_rdump_fieldtype_path_json" 62 65 ]; 63 66 64 67 meta = with lib; {