mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00

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
59 lines
1.5 KiB
Nix
59 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
replaceVars,
|
|
file,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-magic";
|
|
version = "0.4.27";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ahupp";
|
|
repo = "python-magic";
|
|
rev = version;
|
|
hash = "sha256-fZ+5xJ3P0EYK+6rQ8VzXv2zckKfEH5VUdISIR6ybIfQ=";
|
|
};
|
|
|
|
patches = [
|
|
(replaceVars ./libmagic-path.patch {
|
|
libmagic = "${file}/lib/libmagic${stdenv.hostPlatform.extensions.sharedLibrary}";
|
|
})
|
|
(fetchpatch {
|
|
name = "update-test-for-upstream-added-gzip-extensions.patch";
|
|
url = "https://github.com/ahupp/python-magic/commit/4ffcd59113fa26d7c2e9d5897b1eef919fd4b457.patch";
|
|
hash = "sha256-67GpjlGiR4/os/iZ69V+ZziVLpjmid+7t+gQ2aQy9I0=";
|
|
})
|
|
|
|
# Upstream patch to amend test suite for-5.45:
|
|
# https://github.com/ahupp/python-magic/pull/290
|
|
(fetchpatch {
|
|
name = "file-5.45.patch";
|
|
url = "https://github.com/ahupp/python-magic/commit/3d2405ca80cd39b2a91decd26af81dcf181390a4.patch";
|
|
hash = "sha256-HRsnO9MGfMD9BkJdC4SrEFQ1OZEaXpwakXFLoaCPK94=";
|
|
})
|
|
];
|
|
|
|
preCheck = ''
|
|
export LC_ALL=en_US.UTF-8
|
|
'';
|
|
|
|
postCheck = ''
|
|
unset LC_ALL
|
|
'';
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
description = "Python interface to the libmagic file type identification library";
|
|
homepage = "https://github.com/ahupp/python-magic";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|