1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, isPy3k
5}:
6
7buildPythonPackage rec {
8 version = "0.39";
9 pname = "web.py";
10 disabled = isPy3k;
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "7e7224493a51f6fbf02f3ce7f2011bcd9e5ebdfce0ee25e5921fdf665ba07542";
15 };
16
17 meta = with stdenv.lib; {
18 description = "Makes web apps";
19 longDescription = ''
20 Think about the ideal way to write a web app.
21 Write the code to make it happen.
22 '';
23 homepage = "http://webpy.org/";
24 license = licenses.publicDomain;
25 maintainers = with maintainers; [ layus ];
26 };
27
28}