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

23 lines
615 B
Nix
Raw Normal View History

{ lib, fetchPypi, isPy3k, buildPythonPackage }:
2017-09-17 09:00:23 +01:00
buildPythonPackage rec {
pname = "pyobjc";
2021-03-24 09:28:23 +00:00
version = "7.1";
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;
2021-03-24 09:28:23 +00:00
sha256 = "1dfce78545df1af25d1dcd710309dd243083d90c977a8c84c483f8254967417b";
2017-09-17 09:00:23 +01:00
};
meta = with lib; {
2017-09-17 09:00:23 +01:00
description = "A bridge between the Python and Objective-C programming languages";
license = licenses.mit;
maintainers = with maintainers; [ ];
homepage = "https://pythonhosted.org/pyobjc/";
2017-09-17 09:00:23 +01:00
};
}