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

23 lines
632 B
Nix
Raw Normal View History

2017-09-17 10:00:23 +02:00
{ stdenv, fetchPypi, isPy3k, buildPythonPackage }:
buildPythonPackage rec {
pname = "pyobjc";
2020-07-31 10:56:45 +02:00
version = "6.2.2";
2017-09-17 10:00:23 +02:00
# Gives "No matching distribution found for
# pyobjc-framework-Collaboration==4.0b1 (from pyobjc==4.0b1)"
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
2020-07-31 10:56:45 +02:00
sha256 = "d5b87e9fa4cc9b51bf37f9a461887e2d8b9ae7e6bb45675f8edbe35ea6770455";
2017-09-17 10:00:23 +02:00
};
meta = {
description = "A bridge between the Python and Objective-C programming languages";
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ ];
homepage = "https://pythonhosted.org/pyobjc/";
2017-09-17 10:00:23 +02:00
};
}