Merge pull request #301561 from r-ryantm/auto-update/python312Packages.py-serializable

python312Packages.py-serializable: 1.0.2 -> 1.0.3

authored by Weijia Wang and committed by GitHub ba976dc5 bdbff747

+16 -21
+16 -21
pkgs/development/python-modules/py-serializable/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , defusedxml 4 - , fetchFromGitHub 5 - , lxml 6 - , poetry-core 7 - , pytestCheckHook 8 - , pythonOlder 9 - , xmldiff 10 }: 11 12 buildPythonPackage rec { 13 pname = "py-serializable"; 14 - version = "1.0.2"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.8"; ··· 20 owner = "madpah"; 21 repo = "serializable"; 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-RhipoPTewPaYwspTnywLr5FvFVUaFixfRQk6aUMvB4w="; 24 }; 25 26 - nativeBuildInputs = [ 27 - poetry-core 28 - ]; 29 30 - propagatedBuildInputs = [ 31 - defusedxml 32 - ]; 33 34 nativeCheckInputs = [ 35 lxml ··· 37 xmldiff 38 ]; 39 40 - pythonImportsCheck = [ 41 - "serializable" 42 - ]; 43 44 disabledTests = [ 45 # AssertionError: '<ns0[155 chars]itle>The Phoenix ··· 48 ]; 49 50 meta = with lib; { 51 - description = "Pythonic library to aid with serialisation and deserialisation to/from JSON and XML"; 52 homepage = "https://github.com/madpah/serializable"; 53 changelog = "https://github.com/madpah/serializable/blob/v${version}/CHANGELOG.md"; 54 license = licenses.asl20;
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + defusedxml, 5 + fetchFromGitHub, 6 + lxml, 7 + poetry-core, 8 + pytestCheckHook, 9 + pythonOlder, 10 + xmldiff, 11 }: 12 13 buildPythonPackage rec { 14 pname = "py-serializable"; 15 + version = "1.0.3"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.8"; ··· 21 owner = "madpah"; 22 repo = "serializable"; 23 rev = "refs/tags/v${version}"; 24 + hash = "sha256-oVjb7/9RWvQd5L6xQBrspfblPzMaRvnZHDuojTuq+zE="; 25 }; 26 27 + build-system = [ poetry-core ]; 28 29 + dependencies = [ defusedxml ]; 30 31 nativeCheckInputs = [ 32 lxml ··· 34 xmldiff 35 ]; 36 37 + pythonImportsCheck = [ "serializable" ]; 38 39 disabledTests = [ 40 # AssertionError: '<ns0[155 chars]itle>The Phoenix ··· 43 ]; 44 45 meta = with lib; { 46 + description = "Library to aid with serialisation and deserialisation to/from JSON and XML"; 47 homepage = "https://github.com/madpah/serializable"; 48 changelog = "https://github.com/madpah/serializable/blob/v${version}/CHANGELOG.md"; 49 license = licenses.asl20;