nixpkgs/pkgs/development/python-modules/bottle/default.nix

22 lines
563 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, setuptools }:
buildPythonPackage rec {
pname = "bottle";
2019-12-10 18:07:38 +00:00
version = "0.12.18";
src = fetchPypi {
inherit pname version;
2019-12-10 18:07:38 +00:00
sha256 = "0819b74b145a7def225c0e83b16a4d5711fde751cd92bae467a69efce720f69e";
};
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 ];
};
}