Merge master into staging-next

This commit is contained in:
Frederik Rietdijk
2019-07-11 09:40:10 +02:00
88 changed files with 460 additions and 323 deletions

View File

@@ -54,7 +54,7 @@ buildPythonPackage rec {
meta = {
description = "Distributed computation in Python.";
homepage = http://distributed.readthedocs.io/en/latest/;
homepage = https://distributed.readthedocs.io/en/latest/;
license = lib.licenses.bsd3;
platforms = lib.platforms.x86; # fails on aarch64
maintainers = with lib.maintainers; [ teh costrouc ];

View File

@@ -13,6 +13,6 @@ buildPythonPackage rec {
description = "Dump the Python traceback";
license = stdenv.lib.licenses.bsd2;
maintainers = with stdenv.lib.maintainers; [ sauyon ];
homepage = http://faulthandler.readthedocs.io/;
homepage = https://faulthandler.readthedocs.io/;
};
}

View File

@@ -33,7 +33,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ flask six pytz aniso8601 pycrypto ];
meta = with lib; {
homepage = "http://flask-restful.readthedocs.io/";
homepage = "https://flask-restful.readthedocs.io/";
description = "REST API building blocks for Flask";
license = licenses.bsd3;
};

View File

@@ -24,7 +24,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Tools for generators, generator functions, and generator-based coroutines";
license = licenses.mit;
homepage = http://gentools.readthedocs.io/;
homepage = https://gentools.readthedocs.io/;
maintainers = with maintainers; [ mredaelli ];
};

View File

@@ -22,7 +22,7 @@ buildPythonPackage rec {
meta = {
description = "Python interface to Library Genesis";
homepage = http://habanero.readthedocs.io/en/latest/;
homepage = https://habanero.readthedocs.io/en/latest/;
license = lib.licenses.mit;
maintainers = [ lib.maintainers.nico202 ];
};

View File

@@ -12,7 +12,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
description = "Time manipulation utilities for Python";
homepage = http://hiro.readthedocs.io/en/latest/;
homepage = https://hiro.readthedocs.io/en/latest/;
license = licenses.mit;
maintainers = with maintainers; [ nyarly ];
};

View File

@@ -47,7 +47,7 @@ buildPythonPackage rec {
meta = {
description = "Powerful command-line document and bibliography manager";
homepage = http://papis.readthedocs.io/en/latest/;
homepage = https://papis.readthedocs.io/en/latest/;
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ nico202 teto ];
};

View File

@@ -0,0 +1,21 @@
{ stdenv, buildPythonPackage, fetchPypi, pkg-config, libsmf, glib, pytest }:
buildPythonPackage rec {
pname = "pysmf";
version = "0.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "10i7vvvdx6c3gl4afsgnpdanwgzzag087zs0fxvfipnqknazj806";
};
nativeBuildInputs = [ pkg-config pytest ];
buildInputs = [ libsmf glib ];
meta = with stdenv.lib; {
homepage = "http://das.nasophon.de/pysmf/";
description = "Python extension module for reading and writing Standard MIDI Files, based on libsmf.";
license = licenses.bsd2;
maintainers = [ maintainers.gnidorah ];
};
}