Merge master into staging-next

This commit is contained in:
github-actions[bot]
2021-03-15 18:16:46 +00:00
committed by GitHub
38 changed files with 747 additions and 581 deletions

View File

@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "databricks-connect";
version = "7.3.9";
version = "7.3.10";
src = fetchPypi {
inherit pname version;
sha256 = "f789515f3be1bd1f88043110d62859b01a9661e384a81f1768fca4e4bb49a358";
sha256 = "8aa75740900f9b4bcc6d3f2bd815408dba30dc9a512bcc950b93e7353ec45133";
};
sourceRoot = ".";

View File

@@ -1,13 +1,14 @@
{ lib, buildPythonPackage, fetchFromGitHub, isPy27
, bleach
, mt-940
, pytest
, requests
, sepaxml
, pytestCheckHook
, pytest-mock
}:
buildPythonPackage rec {
version = "3.0.0";
version = "3.0.1";
pname = "fints";
disabled = isPy27;
@@ -15,22 +16,17 @@ buildPythonPackage rec {
owner = "raphaelm";
repo = "python-fints";
rev = "v${version}";
sha256 = "00fqgnmv7z6d792ga4cyzn9lrfjf79jplkssm2jbyb0akfggfj7h";
sha256 = "sha256-P9+3QuB5c7WMjic2fSp8pwXrOUHIrLThvfodtbBXLMY=";
};
propagatedBuildInputs = [ requests mt-940 sepaxml bleach ];
checkInputs = [ pytest ];
# ignore network calls and broken fixture
checkPhase = ''
pytest . --ignore=tests/test_client.py -k 'not robust_mode'
'';
checkInputs = [ pytestCheckHook pytest-mock ];
meta = with lib; {
homepage = "https://github.com/raphaelm/python-fints/";
description = "Pure-python FinTS (formerly known as HBCI) implementation";
license = licenses.lgpl3;
maintainers = with maintainers; [ elohmeier ];
license = licenses.lgpl3Only;
maintainers = with maintainers; [ elohmeier dotlambda ];
};
}

View File

@@ -1,19 +1,26 @@
{ lib, buildPythonPackage, isPy3k, fetchPypi }:
{ lib
, buildPythonPackage
, isPy3k
, fetchPypi
, python
}:
buildPythonPackage rec {
pname = "pyhomematic";
version = "0.1.71";
version = "0.1.72";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0z09bw2mlhg7n9jyqmcyir306wpxr5nw1qsp5ps2iaw1qnyz5s9n";
sha256 = "a1d44103b90418d9c8cde4699a1c671d57d12469be23a45e93bfc00df28ef11b";
};
# PyPI tarball does not include tests/ directory
# Unreliable timing: https://github.com/danielperna84/pyhomematic/issues/126
doCheck = false;
checkPhase = ''
${python.interpreter} -m unittest
'';
pythonImportsCheck = [ "pyhomematic" ];
meta = with lib; {
description = "Python 3 Interface to interact with Homematic devices";

View File

@@ -14,11 +14,11 @@
buildPythonPackage rec {
pname = "sagemaker";
version = "2.29.1";
version = "2.29.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-5hFX6tVLolPxC/40ssdr0XYp3Vn3fVvBWGi7Utp6/k8=";
sha256 = "sha256-e+yrjtDC6d47+zEFv6WY7xGw9kDfKLrNyMh/IkC/bQs=";
};
pythonImportsCheck = [

View File

@@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
, lxml
, setuptools
, six
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "xmldiff";
version = "2.4";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Bb6iDOHyyWeGg7zODDupmB+H2StwnRkOAYvL8Efsz2M=";
};
propagatedBuildInputs = [ lxml setuptools six ];
checkInputs = [ pytestCheckHook ];
meta = with lib; {
homepage = "https://github.com/Shoobx/xmldiff";
description = "Creates diffs of XML files";
license = licenses.mit;
maintainers = with maintainers; [ sfrijters ];
};
}