about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pyfribidi/default.nix
blob: e71550867a3dd3fb7488a3de33650a56e59542d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv
, buildPythonPackage
, fetchPypi
, isPyPy
, six
}:

buildPythonPackage rec {
  version = "0.12.0";
  pname = "pyfribidi";
  disabled = isPyPy;

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "64726a4a56783acdc79c6b9b3a15f16e6071077c897a0b999f3b43f744bc621c";
  };

  patches = stdenv.lib.optional stdenv.cc.isClang ./pyfribidi-clang.patch;

  propagatedBuildInputs = [ six ];

  meta = with stdenv.lib; {
    description = "A simple wrapper around fribidi";
    homepage = "https://github.com/pediapress/pyfribidi";
    license = stdenv.lib.licenses.gpl2;
  };

}