Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 22 lines 615 B view raw
1{ lib, fetchPypi, isPy3k, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "pyobjc"; 5 version = "7.1"; 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 = "1dfce78545df1af25d1dcd710309dd243083d90c977a8c84c483f8254967417b"; 14 }; 15 16 meta = with lib; { 17 description = "A bridge between the Python and Objective-C programming languages"; 18 license = licenses.mit; 19 maintainers = with maintainers; [ ]; 20 homepage = "https://pythonhosted.org/pyobjc/"; 21 }; 22}