1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-03 14:22:35 +03:00
nixpkgs/pkgs/development/python-modules/bsdiff4/default.nix

35 lines
679 B
Nix
Raw Normal View History

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