ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / bottle / default.nix
blobebcf036526053020c6af9196bc285ed21d6fd87e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "bottle";
9   version = "0.12.23";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "sha256-aD3jqjmfsm6HsnTbz3CxplE4XUWRMXFjh6vcN5LgQWc=";
16   };
18   checkInputs = [
19     pytestCheckHook
20   ];
22   preCheck = ''
23     cd test
24   '';
26   disabledTests = [
27     "test_delete_cookie"
28     "test_error"
29     "test_error_in_generator_callback"
30   ];
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   };