depot/third_party/nixpkgs/pkgs/development/python-modules/chardet/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

44 lines
958 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hypothesis,
pythonOlder,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "chardet";
version = "5.2.0";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-Gztv9HmoxBS8P6LAhSmVaVxKAm3NbQYzst0JLKOcHPc=";
};
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [
hypothesis
pytestCheckHook
];
disabledTests = [
# flaky; https://github.com/chardet/chardet/issues/256
"test_detect_all_and_detect_one_should_agree"
];
pythonImportsCheck = [ "chardet" ];
meta = with lib; {
changelog = "https://github.com/chardet/chardet/releases/tag/${version}";
description = "Universal encoding detector";
mainProgram = "chardetect";
homepage = "https://github.com/chardet/chardet";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ domenkozar ];
};
}