linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pyobjc / default.nix
blob541a733b3f80e67e576ebd8789da64f93a4efa29
1 { lib, fetchPypi, isPy3k, buildPythonPackage }:
3 buildPythonPackage rec {
4   pname = "pyobjc";
5   version = "7.0.1";
7   # Gives "No matching distribution found for
8   # pyobjc-framework-Collaboration==4.0b1 (from pyobjc==4.0b1)"
9   disabled = isPy3k;
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "f4fd120683b19a2abeac351784204e6b092cf1fb94f597b6eb22f30c117b2ef0";
14   };
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   };