nixpkgs/pkgs/development/python-modules/bsdiff4/default.nix

28 lines
579 B
Nix
Raw Normal View History

{ lib
2020-08-03 21:20:38 +01:00
, buildPythonPackage
, fetchPypi
, aflplusplus
}:
buildPythonPackage rec {
pname = "bsdiff4";
version = "1.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "17fc0dd4204x5gqapvbrc4kv83jdajs00jxm739586pl0iapybrw";
};
checkPhase = ''
mv bsdiff4 _bsdiff4
python -c 'import bsdiff4; bsdiff4.test()'
'';
meta = with lib; {
2020-08-03 21:20:38 +01:00
description = "binary diff and patch using the BSDIFF4-format";
homepage = "https://github.com/ilanschnell/bsdiff4";
license = licenses.bsdProtection;
maintainers = with maintainers; [ ris ];
};
}