Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 639 B view raw
1{ stdenv, fetchPypi, isPy3k, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "pyobjc"; 5 version = "6.2.2"; 6 7 # Gives "No matching distribution found for 8 # pyobjc-framework-Collaboration==4.0b1 (from pyobjc==4.0b1)" 9 disabled = isPy3k; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "d5b87e9fa4cc9b51bf37f9a461887e2d8b9ae7e6bb45675f8edbe35ea6770455"; 14 }; 15 16 meta = { 17 description = "A bridge between the Python and Objective-C programming languages"; 18 license = stdenv.lib.licenses.mit; 19 maintainers = with stdenv.lib.maintainers; [ sauyon ]; 20 homepage = "https://pythonhosted.org/pyobjc/"; 21 }; 22}