Merge branch 'staging-next' into staging

This commit is contained in:
Jan Tojnar
2020-04-16 10:10:38 +02:00
224 changed files with 7017 additions and 4400 deletions

View File

@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "autopep8";
version = "1.5";
version = "1.5.1";
src = fetchPypi {
inherit pname version;
sha256 = "0f592a0447acea0c2b0a9602be1e4e3d86db52badd2e3c84f0193bfd89fd3a43";
sha256 = "1swr8ccm3mafcm3zpbwyn22kjs39lbqmg8w41sh7yb3gskgy2syc";
};
propagatedBuildInputs = [ pycodestyle ];

View File

@@ -1,29 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
{ lib, buildPythonPackage, fetchPypi, isPy27, pythonAtLeast
, graphviz
, multipledispatch
, numpy
, pandas
, pyarrow
, pytest
, pytz
, regex
, toolz
, isPy27
, pytest
, sqlalchemy
, requests
, sqlalchemy
, tables
, pyarrow
, graphviz
, toolz
}:
buildPythonPackage rec {
pname = "ibis-framework";
version = "1.2.0";
disabled = isPy27;
version = "1.3.0";
disabled = isPy27 || pythonAtLeast "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "3a0b79dae6924be0a79669c881a9a1d4817997ad2f81a0f3b1cd03d70aebb071";
sha256 = "1my94a11jzg1hv6ln8wxklbqrg6z5l2l77vr89aq0829yyxacmv7";
};
propagatedBuildInputs = [
@@ -44,8 +41,11 @@ buildPythonPackage rec {
pytest
];
# ignore tests which require test dataset, or frameworks not available
checkPhase = ''
pytest ibis
pytest ibis \
--ignore=ibis/tests/all \
--ignore=ibis/{sql,spark}
'';
meta = with lib; {

View File

@@ -0,0 +1,46 @@
{ buildPythonPackage
, fetchPypi
, isPy27
, lib
, morphys
, pytest
, pytestrunner
, python-baseconv
, six
}:
buildPythonPackage rec {
pname = "py-multibase";
version = "1.0.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version ;
sha256 = "6ed706ea321b487ba82e4172a9c82d61dacd675c865f576a937a94bca1a23443";
};
postPatch = ''
substituteInPlace setup.cfg --replace "[pytest]" ""
substituteInPlace setup.cfg --replace "python_classes = *TestCase" ""
'';
nativeBuildInputs = [
pytestrunner
];
propagatedBuildInputs = [
morphys
six
python-baseconv
];
checkInputs = [
pytest
];
meta = with lib; {
description = "Multibase is a protocol for distinguishing base encodings and other simple string encodings";
homepage = "https://github.com/multiformats/py-multibase";
license = licenses.mit;
maintainers = with maintainers; [ rakesh4g ];
};
}

View File

@@ -2,7 +2,7 @@
buildPythonPackage rec {
pname = "sphinxcontrib-katex";
version = "0.5.1";
version = "0.6.0";
# pkgutil namespaces are broken in nixpkgs (because they can't scan multiple
# directories). But python2 is EOL, so not supporting it should be ok.
@@ -10,7 +10,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
sha256 = "0qssq2qc12rnwb6yhw3xj69cwij3jp3sqzwb6n85qp36g4vxrkb6";
sha256 = "1692q3f3z1rsd3nyxd8wrv0vscwcq2gqjbv79c8ws402y3m7y5ni";
};
propagatedBuildInputs = [ sphinx ];

View File

@@ -2,12 +2,12 @@
buildPythonPackage rec {
pname = "swagger-ui-bundle";
version = "0.0.5";
version = "0.0.6";
src = fetchPypi {
pname = "swagger_ui_bundle";
inherit version;
sha256 = "0v69v94mzzb63ciwpz3n8jwxqcyll3fsyx087s9k9q543zdqzbh1";
sha256 = "1lqxz7q9l2iwf7w11nhw5lnglsh1lgcvq8ydvhabkcc76il3ndy5";
};
# patch away unused test requirements since package contains no tests