nixpkgs/pkgs/development/python-modules/pyobjc/default.nix

23 lines
637 B
Nix
Raw Normal View History

2017-09-17 09:00:23 +01:00
{ stdenv, fetchPypi, isPy3k, buildPythonPackage }:
buildPythonPackage rec {
pname = "pyobjc";
2020-06-06 07:47:25 +01:00
version = "6.2";
2017-09-17 09:00:23 +01:00
# Gives "No matching distribution found for
# pyobjc-framework-Collaboration==4.0b1 (from pyobjc==4.0b1)"
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:25 +01:00
sha256 = "6b514136f538fb5c9c80e310641907d0196c8381602395ac2ee407f32f07ba13";
2017-09-17 09:00:23 +01:00
};
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/";
2017-09-17 09:00:23 +01:00
};
}