Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 637 B view raw
1{ stdenv, fetchPypi, isPy3k, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "pyobjc"; 5 version = "5.1.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 = "ccfc96382bf04977c68a06733f1d7499a7ddeb1f74760e3f8de483f9a542e691"; 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}