Merge pull request #151329 from fabaff/bump-sendgrid

python3Packages.sendgrid: 6.9.2 -> 6.9.3

authored by

Fabian Affolter and committed by
GitHub
a95ba5e9 9ff2dce1

+15 -10
+6 -6
pkgs/development/python-modules/sendgrid/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "sendgrid"; 14 - version = "6.9.2"; 14 + version = "6.9.3"; 15 15 format = "setuptools"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = pname; 19 19 repo = "sendgrid-python"; 20 20 rev = version; 21 - sha256 = "sha256-eqmYuVW912E8hiVReLAoclmNDc2+gOIcUo9lRUx9AwM="; 21 + sha256 = "sha256-/4Wk+1zAFwK+FxRhABQBha43/zapgPDfTFGrPJjXA7s="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [ ··· 33 33 werkzeug 34 34 ]; 35 35 36 - # Exclude tests that require network access 37 - pytestFlagsArray = [ 38 - "--ignore test/test_sendgrid.py" 39 - "--ignore live_test.py" 36 + disabledTestPaths = [ 37 + # Exclude tests that require network access 38 + "test/integ/test_sendgrid.py" 39 + "live_test.py" 40 40 ]; 41 41 42 42 pythonImportsCheck = [
+9 -4
pkgs/development/python-modules/yalexs/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "yalexs"; 19 - version = "1.1.13"; 19 + version = "1.1.15"; 20 + format = "setuptools"; 21 + 20 22 disabled = pythonOlder "3.6"; 21 23 22 24 src = fetchFromGitHub { 23 25 owner = "bdraco"; 24 26 repo = pname; 25 27 rev = "v${version}"; 26 - sha256 = "0938540n60xv7kxam3azszn3nj0mnhhgh5p4hgbfxj43bkwpqz4n"; 28 + sha256 = "sha256-EK9jmbU3A2rNx/H8WOsZiGA7tqzg/XJkW/DV5s+2Y3U="; 27 29 }; 28 30 29 31 propagatedBuildInputs = [ ··· 44 46 45 47 postPatch = '' 46 48 # Not used requirement 47 - substituteInPlace setup.py --replace '"vol",' "" 49 + substituteInPlace setup.py \ 50 + --replace '"vol",' "" 48 51 ''; 49 52 50 - pythonImportsCheck = [ "yalexs" ]; 53 + pythonImportsCheck = [ 54 + "yalexs" 55 + ]; 51 56 52 57 meta = with lib; { 53 58 description = "Python API for Yale Access (formerly August) Smart Lock and Doorbell";