Merge master into staging-next

This commit is contained in:
Frederik Rietdijk
2020-06-17 08:40:33 +02:00
68 changed files with 458 additions and 297 deletions

View File

@@ -3,7 +3,7 @@
, fetchPypi
, isPy27
, numpy
, ffmpeg_4
, ffmpeg
, pkgconfig
}:
@@ -20,7 +20,7 @@ buildPythonPackage rec {
checkInputs = [ numpy ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ffmpeg_4 ];
buildInputs = [ ffmpeg ];
# Tests require downloading files from internet
doCheck = false;

View File

@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "jc";
version = "1.11.2";
version = "1.11.6";
disabled = isPy27;
src = fetchFromGitHub {
owner = "kellyjonbrazil";
repo = "jc";
rev = "v${version}";
sha256 = "1gsvjgypjgw5a0k85kdvbbf7q6wspmv6z76acrgnidhav8sdn4dm";
sha256 = "0jyygq7zmam7yriiv5j4d6mpjdi2p3p7d53bn3qwfzkh4ifsbfan";
};
propagatedBuildInputs = [ ruamel_yaml xmltodict pygments ];

View File

@@ -19,14 +19,14 @@
}:
buildPythonPackage rec {
pname = "nio";
version = "0.10.0";
pname = "matrix-nio";
version = "0.12.0";
src = fetchFromGitHub {
owner = "poljar";
repo = "matrix-nio";
rev = version;
sha256 = "04ryf9lrm0820hqij46hav6mgplabnyl9dfj46iwvxasn06fh2j8";
sha256 = "1d4jhl2xjjp31yjs4zz2cfkvzbi2vr5bsrp07s6nhyc18azxr7ba";
};
nativeBuildInputs = [

View File

@@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "playsound";
version = "1.2.2";
src = fetchFromGitHub {
owner = "TaylorSMarks";
repo = "playsound";
rev = "907f1fe73375a2156f7e0900c4b42c0a60fa1d00";
sha256 = "1fh3m115h0c57lj2pfhhqhmsh5awzblb7csi1xc5a6f6slhl059k";
};
doCheck = false;
pythonImportsCheck = [ "playsound" ];
meta = with lib; {
homepage = "https://github.com/TaylorSMarks/playsound";
description = "Pure Python, cross platform, single function module with no dependencies for playing sounds";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ luc65r ];
};
}