Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 430b7b24d429
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8150b587bd0e
Choose a head ref
  • 4 commits
  • 6 files changed
  • 1 contributor

Commits on Nov 17, 2019

  1. olm: 3.0.0 -> 3.1.4

    tilpner authored and Jon committed Nov 17, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dtzWill Will Dietz
    Copy the full SHA
    58e573d View commit details
  2. python3Packages.python-olm: init at (automatic) 3.1.4

    tilpner authored and Jon committed Nov 17, 2019
    Copy the full SHA
    58a4ecc View commit details
  3. python3Packages.matrix-nio: init at 0.6

    tilpner authored and Jon committed Nov 17, 2019
    Copy the full SHA
    08eb8dc View commit details
  4. Copy the full SHA
    8150b58 View commit details
4 changes: 3 additions & 1 deletion pkgs/applications/networking/irc/weechat/scripts/default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{ callPackage, luaPackages }:
{ callPackage, luaPackages, python3Packages }:

{
weechat-matrix-bridge = callPackage ./weechat-matrix-bridge {
inherit (luaPackages) cjson luaffi;
};

weechat-matrix = python3Packages.callPackage ./weechat-matrix { };

wee-slack = callPackage ./wee-slack { };

weechat-autosort = callPackage ./weechat-autosort { };
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{ buildPythonPackage, stdenv, python, fetchFromGitHub,
pyopenssl, webcolors, future, atomicwrites,
attrs, Logbook, pygments, cachetools, matrix-nio }:

let
matrixUploadPython = python.withPackages (ps: with ps; [
magic
]);
in buildPythonPackage {
pname = "weechat-matrix";
version = "unstable-2019-11-10";

src = fetchFromGitHub {
owner = "poljar";
repo = "weechat-matrix";
rev = "69ad2a9c03d516c212d3d0700dbb2bfe654f6365";
sha256 = "1mfbkag5np2lgv6f31nyfnvavyh67jrrx6gxhzb8m99dd43lgs8c";
};

propagatedBuildInputs = [
pyopenssl
webcolors
future
atomicwrites
attrs
Logbook
pygments
cachetools
matrix-nio
];

passthru.scripts = [ "matrix.py" ];

dontBuild = true;
doCheck = false;

installPhase = ''
mkdir -p $out/share $out/bin
cp $src/main.py $out/share/matrix.py
cp $src/contrib/matrix_upload $out/bin/
substituteInPlace $out/bin/matrix_upload \
--replace '/usr/bin/env -S python3 -u' '${matrixUploadPython}/bin/python -u'
mkdir -p $out/${python.sitePackages}
cp -r $src/matrix $out/${python.sitePackages}/matrix
'';

dontPatchShebangs = true;

meta = with stdenv.lib; {
description = "A Python plugin for Weechat that lets Weechat communicate over the Matrix protocol";
homepage = "https://github.com/poljar/weechat-matrix";
license = licenses.isc;
platforms = platforms.linux;
maintainers = [ maintainers.tilpner ];
};
}
20 changes: 10 additions & 10 deletions pkgs/development/libraries/olm/default.nix
Original file line number Diff line number Diff line change
@@ -2,18 +2,11 @@

stdenv.mkDerivation rec {
pname = "olm";
version = "3.0.0";

meta = {
description = "Implements double cryptographic ratchet and Megolm ratchet";
license = stdenv.lib.licenses.asl20;
homepage = https://matrix.org/git/olm/about;
platforms = with stdenv.lib.platforms; darwin ++ linux;
};
version = "3.1.4";

src = fetchurl {
url = "https://matrix.org/git/olm/snapshot/${pname}-${version}.tar.gz";
sha256 = "1iivxjk458v9lhqgzp0c4k5azligsh9k3rk6irf9ssj29wzgjm2c";
url = "https://matrix.org/git/olm/-/archive/${version}/${pname}-${version}.tar.gz";
sha256 = "0f7azjxc77n4ib9nj3cwyk3vhk8r2dsyf7id6nvqyxqxwxn95a8w";
};

doCheck = true;
@@ -25,4 +18,11 @@ stdenv.mkDerivation rec {
makeFlags = if stdenv.cc.isClang then [ "CC=cc" ] else null;

installFlags = "PREFIX=$(out)";

meta = {
description = "Implements double cryptographic ratchet and Megolm ratchet";
license = stdenv.lib.licenses.asl20;
homepage = https://matrix.org/git/olm/about;
platforms = with stdenv.lib.platforms; darwin ++ linux;
};
}
49 changes: 49 additions & 0 deletions pkgs/development/python-modules/matrix-nio/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{ lib, buildPythonPackage, fetchFromGitHub, git,
attrs, future, peewee, h11, h2, atomicwrites, pycryptodome, sphinx, Logbook, jsonschema,
python-olm, unpaddedbase64, aiohttp }:

buildPythonPackage rec {
pname = "nio";
version = "0.6";

src = fetchFromGitHub {
owner = "poljar";
repo = "matrix-nio";
rev = version;
sha256 = "0pq5i6ks3pck2kq9m4p3pw9hbvkzs27xkyv68mjnfc6chp2g2mg9";
};

postPatch = ''
substituteInPlace setup.py \
--replace 'python-olm>=3.1.0' ""
'';

nativeBuildInputs = [
git
];

propagatedBuildInputs = [
attrs
future
peewee
h11
h2
atomicwrites
pycryptodome
sphinx
Logbook
jsonschema
python-olm
unpaddedbase64
aiohttp
];

doCheck = false;

meta = with lib; {
description = "A Python Matrix client library, designed according to sans I/O principles";
homepage = "https://github.com/poljar/matrix-nio";
license = licenses.isc;
maintainers = [ maintainers.tilpner ];
};
}
29 changes: 29 additions & 0 deletions pkgs/development/python-modules/python-olm/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ lib, buildPythonPackage, olm,
cffi, future, typing }:

buildPythonPackage {
pname = "python-olm";
inherit (olm) src version;

sourceRoot = "${olm.name}/python";
buildInputs = [ olm ];

preBuild = ''
make include/olm/olm.h
'';

propagatedBuildInputs = [
cffi
future
typing
];

doCheck = false;

meta = with lib; {
description = "Python bindings for Olm";
homepage = "https://gitlab.matrix.org/matrix-org/olm/tree/master/python";
license = olm.meta.license;
maintainers = [ maintainers.tilpner ];
};
}
4 changes: 4 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -1149,6 +1149,8 @@ in {
igraph = pkgs.igraph;
};

python-olm = callPackage ../development/python-modules/python-olm { };

python3-openid = callPackage ../development/python-modules/python3-openid { };

python-packer = callPackage ../development/python-modules/python-packer { };
@@ -3847,6 +3849,8 @@ in {

matrix-client = callPackage ../development/python-modules/matrix-client { };

matrix-nio = callPackage ../development/python-modules/matrix-nio { };

mautrix-appservice = callPackage ../development/python-modules/mautrix-appservice { };

maya = callPackage ../development/python-modules/maya { };