Merge pull request #151329 from fabaff/bump-sendgrid
python3Packages.sendgrid: 6.9.2 -> 6.9.3
This commit is contained in:
commit
a95ba5e96a
2 changed files with 15 additions and 10 deletions
|
@ -11,14 +11,14 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "sendgrid";
|
||||
version = "6.9.2";
|
||||
version = "6.9.3";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = "sendgrid-python";
|
||||
rev = version;
|
||||
sha256 = "sha256-eqmYuVW912E8hiVReLAoclmNDc2+gOIcUo9lRUx9AwM=";
|
||||
sha256 = "sha256-/4Wk+1zAFwK+FxRhABQBha43/zapgPDfTFGrPJjXA7s=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -33,10 +33,10 @@ buildPythonPackage rec {
|
|||
werkzeug
|
||||
];
|
||||
|
||||
# Exclude tests that require network access
|
||||
pytestFlagsArray = [
|
||||
"--ignore test/test_sendgrid.py"
|
||||
"--ignore live_test.py"
|
||||
disabledTestPaths = [
|
||||
# Exclude tests that require network access
|
||||
"test/integ/test_sendgrid.py"
|
||||
"live_test.py"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
|
|
|
@ -16,14 +16,16 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "yalexs";
|
||||
version = "1.1.13";
|
||||
version = "1.1.15";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bdraco";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0938540n60xv7kxam3azszn3nj0mnhhgh5p4hgbfxj43bkwpqz4n";
|
||||
sha256 = "sha256-EK9jmbU3A2rNx/H8WOsZiGA7tqzg/XJkW/DV5s+2Y3U=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -44,10 +46,13 @@ buildPythonPackage rec {
|
|||
|
||||
postPatch = ''
|
||||
# Not used requirement
|
||||
substituteInPlace setup.py --replace '"vol",' ""
|
||||
substituteInPlace setup.py \
|
||||
--replace '"vol",' ""
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "yalexs" ];
|
||||
pythonImportsCheck = [
|
||||
"yalexs"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python API for Yale Access (formerly August) Smart Lock and Doorbell";
|
||||
|
|
Loading…
Reference in a new issue