mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
23 lines
635 B
Nix
23 lines
635 B
Nix
{ stdenv, fetchPypi, isPy3k, buildPythonPackage }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyobjc";
|
|
version = "6.1";
|
|
|
|
# Gives "No matching distribution found for
|
|
# pyobjc-framework-Collaboration==4.0b1 (from pyobjc==4.0b1)"
|
|
disabled = isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "53ae86caaedc48350c6e93d6e778a0c5044e802340b6d6a679e55014758be540";
|
|
};
|
|
|
|
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/;
|
|
};
|
|
}
|