python313Packages.rubymarshal: 1.2.8 -> 1.2.9 (#390110)

This commit is contained in:
Fabian Affolter
2025-03-15 14:11:37 +01:00
committed by GitHub
@@ -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 ];
};
}