Merge pull request #30266 from Ralith/matrix-synapse

matrix-synapse: 0.22.1 -> 0.24.1
This commit is contained in:
Frederik Rietdijk
2017-11-05 09:39:16 +01:00
committed by GitHub
3 changed files with 24 additions and 6 deletions

View File

@@ -0,0 +1,16 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "affinity";
version = "0.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "1i6j7kszvnzh5vh9k48cqwx2kzf73a6abgv9s6bf0j2zmfjl2wb6";
};
meta = {
description = "control processor affinity on windows and linux";
homepage = http://cheeseshop.python.org/pypi/affinity;
license = with lib.licenses; [ psfl ];
};
}