From 9579478b3512eab450b5892b9fc6bed48499b303 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 15 Mar 2025 12:51:32 +0100 Subject: [PATCH] python313Packages.rubymarshal: 1.2.8 -> 1.2.9 --- .../development/python-modules/rubymarshal/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/rubymarshal/default.nix b/pkgs/development/python-modules/rubymarshal/default.nix index 11b1ec990727..91606d9b5534 100644 --- a/pkgs/development/python-modules/rubymarshal/default.nix +++ b/pkgs/development/python-modules/rubymarshal/default.nix @@ -3,18 +3,16 @@ buildPythonPackage, fetchPypi, poetry-core, - isPy3k, }: buildPythonPackage rec { pname = "rubymarshal"; - version = "1.2.8"; + version = "1.2.9"; pyproject = true; - disabled = !isPy3k; src = fetchPypi { inherit pname version; - sha256 = "sha256-8+8KxCjsawlFXd1Bgq/8jY0TSB9l8UHaNMkcqfoz7hs="; + hash = "sha256-OqTbHV2duO4SmP6O9+tfaSD7fKOJ/PmzX5dUW9eoBBg="; }; build-system = [ poetry-core ]; @@ -25,9 +23,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "rubymarshal" ]; meta = with lib; { - homepage = "https://github.com/d9pouces/RubyMarshal/"; description = "Read and write Ruby-marshalled data"; + homepage = "https://github.com/d9pouces/RubyMarshal/"; license = licenses.wtfpl; - maintainers = [ maintainers.ryantm ]; + maintainers = with maintainers; [ ryantm ]; }; }