Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
29 lines
575 B
Nix
29 lines
575 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
pkgs,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
format = "setuptools";
|
|
inherit (pkgs.file) pname version src;
|
|
|
|
patchPhase = ''
|
|
substituteInPlace python/magic.py --replace "find_library('magic')" "'${pkgs.file}/lib/libmagic${stdenv.hostPlatform.extensions.sharedLibrary}'"
|
|
'';
|
|
|
|
buildInputs = [ pkgs.file ];
|
|
|
|
preConfigure = "cd python";
|
|
|
|
# No test suite
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Python wrapper around libmagic";
|
|
homepage = "http://www.darwinsys.com/file/";
|
|
license = licenses.lgpl2;
|
|
};
|
|
}
|