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