1{ stdenv, buildPythonPackage, fetchPypi, setuptools }:
2
3buildPythonPackage rec {
4 pname = "bottle";
5 version = "0.12.16";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "9c310da61e7df2b6ac257d8a90811899ccb3a9743e77e947101072a2e3186726";
10 };
11
12 propagatedBuildInputs = [ setuptools ];
13
14 meta = with stdenv.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}