Files
nixpkgs/pkgs/development/python-modules/karton-classifier/default.nix
T
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

58 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, chardet
, fetchFromGitHub
, karton-core
, pytestCheckHook
, python-magic
, pythonOlder
}:
buildPythonPackage rec {
pname = "karton-classifier";
version = "1.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "CERT-Polska";
repo = pname;
rev = "v${version}";
hash = "sha256-TRmAin0TAOIwR5EBMwTOJ9QaHO+mOx/eAjgqvyQZDj4=";
};
propagatedBuildInputs = [
chardet
karton-core
python-magic
];
nativeCheckInputs = [
pytestCheckHook
];
postPatch = ''
substituteInPlace requirements.txt \
--replace "chardet==3.0.4" "chardet" \
--replace "python-magic==0.4.18" "python-magic"
'';
pythonImportsCheck = [
"karton.classifier"
];
disabledTests = [
# Tests expecting results from a different version of libmagic
"test_process_archive_ace"
"test_process_runnable_win32_lnk"
];
meta = with lib; {
description = "File type classifier for the Karton framework";
homepage = "https://github.com/CERT-Polska/karton-classifier";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ fab ];
};
}