23 lines
637 B
Nix
23 lines
637 B
Nix
{ stdenv, fetchPypi, isPy3k, buildPythonPackage }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyobjc";
|
|
version = "5.1.2";
|
|
|
|
# Gives "No matching distribution found for
|
|
# pyobjc-framework-Collaboration==4.0b1 (from pyobjc==4.0b1)"
|
|
disabled = isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "ccfc96382bf04977c68a06733f1d7499a7ddeb1f74760e3f8de483f9a542e691";
|
|
};
|
|
|
|
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/;
|
|
};
|
|
}
|