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