depot/third_party/nixpkgs/pkgs/development/python-modules/slob/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

37 lines
768 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
isPy3k,
pyicu,
python,
}:
buildPythonPackage {
pname = "slob";
version = "unstable-2020-06-26";
format = "setuptools";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "itkach";
repo = "slob";
rev = "018588b59999c5c0eb42d6517fdb84036f3880cb";
sha256 = "01195hphjnlcvgykw143rf06s6y955sjc1r825a58vhjx7hj54zh";
};
propagatedBuildInputs = [ pyicu ];
checkPhase = ''
${python.interpreter} -m unittest slob
'';
pythonImportsCheck = [ "slob" ];
meta = with lib; {
homepage = "https://github.com/itkach/slob/";
description = "Reference implementation of the slob (sorted list of blobs) format";
mainProgram = "slob";
license = licenses.gpl3Only;
};
}