Files
nixpkgs/pkgs/development/python-modules/magic/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

30 lines
558 B
Nix

{
lib,
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 lib; {
description = "Python wrapper around libmagic";
homepage = "http://www.darwinsys.com/file/";
license = licenses.lgpl2;
};
}