1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, isPy3k
5}:
6
7buildPythonPackage rec {
8 version = "0.40";
9 pname = "web.py";
10 disabled = isPy3k;
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "dc5e42ffbc42d77d07f75b7acca9975a3368ae609774e49ddebb497a784131f3";
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 = "https://webpy.org/";
24 license = licenses.publicDomain;
25 maintainers = with maintainers; [ layus ];
26 };
27
28}