My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/slob/default.nix

34 lines
709 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy3k
, PyICU
, python
}:
buildPythonPackage {
pname = "slob";
version = "unstable-2020-06-26";
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";
license = licenses.gpl3Only;
};
}