2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2020-08-03 20:20:38 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2022-03-11 09:06:33 +00:00
|
|
|
, pythonOlder
|
2020-08-03 20:20:38 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bsdiff4";
|
2022-03-11 05:18:19 +00:00
|
|
|
version = "1.2.2";
|
2022-03-11 09:06:33 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
2020-08-03 20:20:38 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-03-11 09:06:33 +00:00
|
|
|
hash = "sha256-GICsP1KmxGrmvMbbEX5Ps1+bDM1a91/U/uaQfQDWmDw=";
|
2020-08-03 20:20:38 +00:00
|
|
|
};
|
|
|
|
|
2022-03-11 09:06:33 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"bsdiff4"
|
|
|
|
];
|
|
|
|
|
2020-08-03 20:20:38 +00:00
|
|
|
checkPhase = ''
|
|
|
|
mv bsdiff4 _bsdiff4
|
|
|
|
python -c 'import bsdiff4; bsdiff4.test()'
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2022-03-11 09:06:33 +00:00
|
|
|
description = "Binary diff and patch using the BSDIFF4-format";
|
2020-08-03 20:20:38 +00:00
|
|
|
homepage = "https://github.com/ilanschnell/bsdiff4";
|
|
|
|
license = licenses.bsdProtection;
|
|
|
|
maintainers = with maintainers; [ ris ];
|
|
|
|
};
|
|
|
|
}
|