1{ stdenv, buildPythonPackage, fetchPypi, setuptools }:
2
3buildPythonPackage rec {
4 pname = "bottle";
5 version = "0.12.13";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "39b751aee0b167be8dffb63ca81b735bbf1dd0905b3bc42761efedee8f123355";
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}