1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, isPy3k
5}:
6
7buildPythonPackage rec {
8 version = "0.61";
9 pname = "web.py";
10 disabled = isPy3k;
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "c7a9081aeb086cd3e703c7553a47ee75188d1d325f25eec7654d9bb00b5eccbb";
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 broken = true;
27 };
28
29}