biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / bsdiff4 / default.nix
blob1ad855c1a11afe106ad581bdc03be894d52451ab
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6 }:
8 buildPythonPackage rec {
9   pname = "bsdiff4";
10   version = "1.2.4";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-HXEpqBIYYHMejM4pAdMYPhSuxwJE9k6PdFYyddw4gGc=";
18   };
20   pythonImportsCheck = [ "bsdiff4" ];
22   checkPhase = ''
23     mv bsdiff4 _bsdiff4
24     python -c 'import bsdiff4; bsdiff4.test()'
25   '';
27   meta = with lib; {
28     description = "Binary diff and patch using the BSDIFF4-format";
29     homepage = "https://github.com/ilanschnell/bsdiff4";
30     changelog = "https://github.com/ilanschnell/bsdiff4/blob/${version}/CHANGELOG.txt";
31     license = licenses.bsdProtection;
32     maintainers = with maintainers; [ ris ];
33   };