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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
564 B
Nix
Raw Normal View History

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