python3.pkgs.slob: 0-unstable-20{20-06-26 -> 24-04-19} (#454973)

This commit is contained in:
Doron Behar
2025-12-28 20:04:41 +00:00
committed by GitHub
2 changed files with 27 additions and 7 deletions
+5
View File
@@ -0,0 +1,5 @@
{
python3Packages,
}:
python3Packages.toPythonApplication python3Packages.slob
@@ -2,26 +2,40 @@
lib,
buildPythonPackage,
fetchFromGitHub,
isPy3k,
# dependencies
pyicu,
# build-system
setuptools,
# tests
python,
}:
buildPythonPackage {
pname = "slob";
version = "unstable-2020-06-26";
format = "setuptools";
disabled = !isPy3k;
version = "0-unstable-2024-04-19";
pyproject = true;
src = fetchFromGitHub {
owner = "itkach";
repo = "slob";
rev = "018588b59999c5c0eb42d6517fdb84036f3880cb";
sha256 = "01195hphjnlcvgykw143rf06s6y955sjc1r825a58vhjx7hj54zh";
rev = "c21d695707db7d2fe4ec7ec27a018bb7b0fcc209";
hash = "sha256-dy/EaRLx0LwMklk4h2eL8CsyvWN4swcJNs5cULmh46g=";
};
propagatedBuildInputs = [ pyicu ];
build-system = [
setuptools
];
dependencies = [
pyicu
];
# The tests are part of the same slob.py file, so unittestCheckHook which
# runs python -m unittest with the `discover` argument which doesn't discover
# any tests.
checkPhase = ''
${python.interpreter} -m unittest slob
'';
@@ -33,5 +47,6 @@ buildPythonPackage {
description = "Reference implementation of the slob (sorted list of blobs) format";
mainProgram = "slob";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ doronbehar ];
};
}