a19cd4ffb1
This reverts commit65a333600d. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
62 lines
1.5 KiB
Nix
62 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
runCommand,
|
|
wireshark-cli,
|
|
pytestCheckHook,
|
|
manuf, # remove when buildPythonPackage supports finalAttrs
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "manuf";
|
|
version = "1.1.5";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "coolbho3k";
|
|
repo = "manuf";
|
|
rev = "${version}";
|
|
hash = "sha256-3CFs3aqwE8rZPwU1QBqAGxNHT5jg7ymG12yBD56gTNI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ wireshark-cli ];
|
|
|
|
patches = [
|
|
# Do update while building package from wireshark-cli
|
|
./internal_db_update_nix.patch
|
|
# Fix MANUF_URL for external db update functionality (https://github.com/coolbho3k/manuf/issues/34)
|
|
./fix_manuf_url.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
${lib.getExe wireshark-cli} -G manuf > manuf/manuf
|
|
cat ${wireshark-cli}/share/wireshark/wka >> manuf/manuf
|
|
'';
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
disabledTests = [ "test_update_update" ];
|
|
|
|
pythonImportsCheck = [ "manuf" ];
|
|
|
|
passthru.tests = {
|
|
testMacAddress = runCommand "${pname}-test" { } ''
|
|
${lib.getExe manuf} BC:EE:7B:00:00:00 > $out
|
|
[ "$(cat $out | tr -d '\n')" = "Vendor(manuf='ASUSTekC', manuf_long='ASUSTek COMPUTER INC.', comment=None)" ]
|
|
'';
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/coolbho3k/manuf";
|
|
description = " Parser library for Wireshark's OUI database";
|
|
mainProgram = "manuf";
|
|
platforms = platforms.linux;
|
|
license = with licenses; [
|
|
lgpl3Plus
|
|
asl20
|
|
];
|
|
maintainers = with maintainers; [ dsuetin ];
|
|
};
|
|
}
|