2018-03-31 16:17:55 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, setuptools }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bottle";
|
2019-10-16 10:43:03 +01:00
|
|
|
version = "0.12.17";
|
2018-03-31 16:17:55 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-16 10:43:03 +01:00
|
|
|
sha256 = "e9eaa412a60cc3d42ceb42f58d15864d9ed1b92e9d630b8130c871c5bb16107c";
|
2018-03-31 16:17:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ setuptools ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://bottlepy.org;
|
|
|
|
description = "A fast and simple micro-framework for small web-applications";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ koral ];
|
|
|
|
};
|
|
|
|
}
|