linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / python-magic / default.nix
blob6737f1260733f6f35d114f57d98d501918b80de0
1 { lib
2 , stdenv
3 , python
4 , buildPythonPackage
5 , fetchFromGitHub
6 , substituteAll
7 , file
8 , glibcLocales
9 }:
11 buildPythonPackage rec {
12   pname = "python-magic";
13   version = "0.4.22";
15   src = fetchFromGitHub {
16     owner = "ahupp";
17     repo = "python-magic";
18     rev = version;
19     sha256 = "0zbdjr5shijs0jayz7gycpx0kn6v2bh83dpanyajk2vmy47jvbd6";
20   };
22   patches = [
23     (substituteAll {
24       src = ./libmagic-path.patch;
25       libmagic = "${file}/lib/libmagic${stdenv.hostPlatform.extensions.sharedLibrary}";
26     })
27   ];
29   checkInputs = [ glibcLocales ];
31   checkPhase = ''
32     LC_ALL="en_US.UTF-8" ${python.interpreter} test/test.py
33   '';
35   meta = {
36     description = "A python interface to the libmagic file type identification library";
37     homepage = "https://github.com/ahupp/python-magic";
38     license = lib.licenses.mit;
39   };