Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 21 lines 563 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, setuptools }: 2 3buildPythonPackage rec { 4 pname = "bottle"; 5 version = "0.12.18"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0819b74b145a7def225c0e83b16a4d5711fde751cd92bae467a69efce720f69e"; 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}