Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 508 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5, isPyPy 6}: 7 8buildPythonPackage rec { 9 version = "0.11.0"; 10 pname = "pyfribidi"; 11 disabled = isPy3k || isPyPy; 12 13 src = fetchPypi { 14 inherit pname version; 15 extension = "zip"; 16 sha256 = "6f7d83c09eae0cb98a40b85ba3dedc31af4dbff8fc4425f244c1e9f44392fded"; 17 }; 18 19 meta = with stdenv.lib; { 20 description = "A simple wrapper around fribidi"; 21 homepage = https://github.com/pediapress/pyfribidi; 22 license = stdenv.lib.licenses.gpl2; 23 }; 24 25}