Merge pull request #178506 from dotlambda/bottle-0.12.21

python310Packages.bottle: 0.12.19 -> 0.12.21

authored by

Sandro and committed by
GitHub
0d77d313 fbf7716f

+23 -6
+23 -6
pkgs/development/python-modules/bottle/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, setuptools }: 2 3 buildPythonPackage rec { 4 pname = "bottle"; 5 - version = "0.12.19"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "a9d73ffcbc6a1345ca2d7949638db46349f5b2b77dac65d6494d45c23628da2c"; 10 }; 11 12 - propagatedBuildInputs = [ setuptools ]; 13 14 meta = with lib; { 15 - homepage = "http://bottlepy.org"; 16 description = "A fast and simple micro-framework for small web-applications"; 17 license = licenses.mit; 18 - platforms = platforms.all; 19 maintainers = with maintainers; [ koral ]; 20 }; 21 }
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pytestCheckHook 5 + }: 6 7 buildPythonPackage rec { 8 pname = "bottle"; 9 + version = "0.12.21"; 10 + 11 + format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 + sha256 = "787c61b6cc02b9c229bf2663011fac53dd8fc197f7f8ad2eeede29d888d7887e"; 16 }; 17 18 + checkInputs = [ 19 + pytestCheckHook 20 + ]; 21 + 22 + preCheck = '' 23 + cd test 24 + ''; 25 + 26 + disabledTests = [ 27 + "test_delete_cookie" 28 + "test_error" 29 + "test_error_in_generator_callback" 30 + ]; 31 32 meta = with lib; { 33 + homepage = "https://bottlepy.org/"; 34 description = "A fast and simple micro-framework for small web-applications"; 35 license = licenses.mit; 36 maintainers = with maintainers; [ koral ]; 37 }; 38 }