mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
29 lines
556 B
Nix
29 lines
556 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, pkgs
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
name = pkgs.file.name;
|
|
|
|
src = pkgs.file.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 stdenv.lib; {
|
|
description = "A Python wrapper around libmagic";
|
|
homepage = "http://www.darwinsys.com/file/";
|
|
license = licenses.lgpl2;
|
|
};
|
|
|
|
}
|