Merge pull request #175847 from SuperSandro2000/python310Packages.python-magic

python310Packages.python-magic: 0.4.25 -> 0.4.26
This commit is contained in:
Fabian Affolter
2022-06-02 13:29:33 +02:00
committed by GitHub
@@ -5,18 +5,18 @@
, fetchFromGitHub
, substituteAll
, file
, glibcLocales
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "python-magic";
version = "0.4.25";
version = "0.4.26";
src = fetchFromGitHub {
owner = "ahupp";
repo = "python-magic";
rev = version;
sha256 = "sha256-h7YQVH5Z7zunT6AdLPBh3TWpxLpZ5unSHDhkVDFOWDI=";
sha256 = "sha256-RcKldMwSRroNZNEl0jwuJG9C+3OIPBzk+CjqkxKK/eY=";
};
patches = [
@@ -26,12 +26,14 @@ buildPythonPackage rec {
})
];
checkInputs = [ glibcLocales ];
checkPhase = ''
LC_ALL="en_US.UTF-8" ${python.interpreter} test/test.py
preCheck = ''
export LC_ALL=en_US.UTF-8
'';
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "A python interface to the libmagic file type identification library";
homepage = "https://github.com/ahupp/python-magic";