Merge pull request #119724 from prusnak/slob

This commit is contained in:
Sandro 2021-04-19 19:17:00 +02:00 committed by GitHub
commit 0e53f98c65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,14 +8,14 @@
buildPythonPackage { buildPythonPackage {
pname = "slob"; pname = "slob";
version = "unstable-2016-11-03"; version = "unstable-2020-06-26";
disabled = !isPy3k; disabled = !isPy3k;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "itkach"; owner = "itkach";
repo = "slob"; repo = "slob";
rev = "d1ed71e4778729ecdfc2fe27ed783689a220a6cd"; rev = "018588b59999c5c0eb42d6517fdb84036f3880cb";
sha256 = "1r510s4r124s121wwdm9qgap6zivlqqxrhxljz8nx0kv0cdyypi5"; sha256 = "01195hphjnlcvgykw143rf06s6y955sjc1r825a58vhjx7hj54zh";
}; };
propagatedBuildInputs = [ PyICU ]; propagatedBuildInputs = [ PyICU ];
@ -24,10 +24,11 @@ buildPythonPackage {
${python.interpreter} -m unittest slob ${python.interpreter} -m unittest slob
''; '';
pythonImportsCheck = [ "slob" ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/itkach/slob/"; homepage = "https://github.com/itkach/slob/";
description = "Reference implementation of the slob (sorted list of blobs) format"; description = "Reference implementation of the slob (sorted list of blobs) format";
license = licenses.gpl3; license = licenses.gpl3Only;
}; };
} }