python.pkgs.pyobjc: init at 4.0b1
This commit is contained in:
committed by
Robert Helgesson
parent
9e2f54a30c
commit
a5f5bee85f
23
pkgs/development/python-modules/pyobjc/default.nix
Normal file
23
pkgs/development/python-modules/pyobjc/default.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchPypi, isPy3k, buildPythonPackage }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "pyobjc";
|
||||
version = "4.0b1";
|
||||
|
||||
# Gives "No matching distribution found for
|
||||
# pyobjc-framework-Collaboration==4.0b1 (from pyobjc==4.0b1)"
|
||||
disabled = isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "16bng6960c1m57nnh1l09ycnyimrqzw9mx9pnyjxn5zzm5kalr37";
|
||||
};
|
||||
|
||||
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/;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user