mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
30 lines
607 B
Nix
30 lines
607 B
Nix
{ 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;
|
|
};
|
|
|
|
}
|