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

24 lines
669 B
Nix
Raw Normal View History

2017-09-17 08:00:23 +00:00
{ stdenv, fetchPypi, isPy3k, buildPythonPackage }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "pyobjc";
2018-04-04 18:14:51 +00:00
version = "4.2.1";
2017-09-17 08:00:23 +00:00
# Gives "No matching distribution found for
# pyobjc-framework-Collaboration==4.0b1 (from pyobjc==4.0b1)"
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
2018-04-04 18:14:51 +00:00
sha256 = "b156abab60da3f3c4bc65a919eabb2c98539a94163a277efba5828358396d23e";
2017-09-17 08:00:23 +00: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/;
};
}