2018-10-29 06:34:51 -07:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, isPy3k
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2020-11-29 06:04:45 -08:00
|
|
|
version = "0.62";
|
2018-10-29 06:34:51 -07:00
|
|
|
pname = "web.py";
|
|
|
|
disabled = isPy3k;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-29 06:04:45 -08:00
|
|
|
sha256 = "5ce684caa240654cae5950da8b4b7bc178812031e08f990518d072bd44ab525e";
|
2018-10-29 06:34:51 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Makes web apps";
|
|
|
|
longDescription = ''
|
|
|
|
Think about the ideal way to write a web app.
|
|
|
|
Write the code to make it happen.
|
|
|
|
'';
|
2020-01-22 02:26:22 -08:00
|
|
|
homepage = "https://webpy.org/";
|
2018-10-29 06:34:51 -07:00
|
|
|
license = licenses.publicDomain;
|
|
|
|
maintainers = with maintainers; [ layus ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|