python313Packages.rubymarshal: fix build (#388362)

This commit is contained in:
Peder Bergebakken Sundt
2025-03-11 01:16:17 +01:00
committed by GitHub
@@ -2,14 +2,14 @@
lib,
buildPythonPackage,
fetchPypi,
hypothesis,
poetry-core,
isPy3k,
}:
buildPythonPackage rec {
pname = "rubymarshal";
version = "1.2.8";
format = "setuptools";
pyproject = true;
disabled = !isPy3k;
src = fetchPypi {
@@ -17,7 +17,7 @@ buildPythonPackage rec {
sha256 = "sha256-8+8KxCjsawlFXd1Bgq/8jY0TSB9l8UHaNMkcqfoz7hs=";
};
propagatedBuildInputs = [ hypothesis ];
build-system = [ poetry-core ];
# pypi doesn't distribute tests
doCheck = false;