pythonPackages.pyfribidi: fix build

This commit is contained in:
Maxim Krivchikov 2020-02-22 22:29:49 +00:00
parent 2fea715779
commit 4644a4c482
1 changed files with 4 additions and 2 deletions

View File

@ -1,14 +1,14 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, isPyPy
, six
}:
buildPythonPackage rec {
version = "0.12.0";
pname = "pyfribidi";
disabled = isPy3k || isPyPy;
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
@ -16,6 +16,8 @@ buildPythonPackage rec {
sha256 = "64726a4a56783acdc79c6b9b3a15f16e6071077c897a0b999f3b43f744bc621c";
};
propagatedBuildInputs = [ six ];
meta = with stdenv.lib; {
description = "A simple wrapper around fribidi";
homepage = https://github.com/pediapress/pyfribidi;