nixpkgs/pkgs/development/python-modules/pyobjc/default.nix
2019-10-27 16:26:50 +01:00

23 lines
637 B
Nix

{ stdenv, fetchPypi, isPy3k, buildPythonPackage }:
buildPythonPackage rec {
pname = "pyobjc";
version = "6.0.1";
# Gives "No matching distribution found for
# pyobjc-framework-Collaboration==4.0b1 (from pyobjc==4.0b1)"
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "f19dcd668473d61e500440569936b2272333ec385a603730c39f68a8d42b474b";
};
meta = {
description = "A bridge between the Python and Objective-C programming languages";
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ sauyon ];
homepage = https://pythonhosted.org/pyobjc/;
};
}