2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
pythonOlder,
|
2020-08-20 17:08:02 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bsdiff4";
|
2023-11-16 04:20:00 +00:00
|
|
|
version = "1.2.4";
|
2022-03-30 09:31:56 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
2020-08-20 17:08:02 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-11-16 04:20:00 +00:00
|
|
|
hash = "sha256-HXEpqBIYYHMejM4pAdMYPhSuxwJE9k6PdFYyddw4gGc=";
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
pythonImportsCheck = [ "bsdiff4" ];
|
2022-03-30 09:31:56 +00:00
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
checkPhase = ''
|
|
|
|
mv bsdiff4 _bsdiff4
|
|
|
|
python -c 'import bsdiff4; bsdiff4.test()'
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2022-03-30 09:31:56 +00:00
|
|
|
description = "Binary diff and patch using the BSDIFF4-format";
|
2020-08-20 17:08:02 +00:00
|
|
|
homepage = "https://github.com/ilanschnell/bsdiff4";
|
2023-03-04 12:14:45 +00:00
|
|
|
changelog = "https://github.com/ilanschnell/bsdiff4/blob/${version}/CHANGELOG.txt";
|
2020-08-20 17:08:02 +00:00
|
|
|
license = licenses.bsdProtection;
|
|
|
|
maintainers = with maintainers; [ ris ];
|
|
|
|
};
|
|
|
|
}
|