1{ lib, buildPythonPackage, fetchPypi, setuptools }:
2
3buildPythonPackage 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}