linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / exif / default.nix
blob2c549030e6d7912d9e051fee2b434bffda36e185
1 { lib, buildPythonPackage, fetchFromGitLab, isPy3k, plum-py, pytestCheckHook, baseline }:
3 buildPythonPackage rec {
4   pname = "exif";
5   version = "1.2.0";
6   disabled = !isPy3k;
8   src = fetchFromGitLab {
9     owner = "TNThieding";
10     repo = "exif";
11     rev = "686857c677f489759db90b1ad61fa1cc1cac5f9a";
12     sha256 = "0z2if23kmi0iyxviz32mlqs997i3dqpqfz6nznlwkhkkb6rkwwnh";
13   };
15   propagatedBuildInputs = [ plum-py ];
17   postPatch = ''
18     substituteInPlace setup.py \
19       --replace "plum-py==0.3.1" "plum-py>=0.3.1"
20   '';
22   checkInputs = [ pytestCheckHook baseline ];
24   meta = with lib; {
25     description = "Read and modify image EXIF metadata using Python";
26     homepage    = "https://gitlab.com/TNThieding/exif";
27     license     = licenses.mit;
28     maintainers = with maintainers; [ dnr ];
29   };