bepasty: move out of python-packages

because its a (web) application and thus doesn't belong there.
This commit is contained in:
Frederik Rietdijk
2017-08-25 19:36:18 +02:00
parent e0a23575d2
commit 997043c137
4 changed files with 37 additions and 28 deletions
+34
View File
@@ -0,0 +1,34 @@
{ python
, lib
}:
with python.pkgs;
buildPythonPackage rec {
pname = "bepasty";
version = "0.4.0";
name = "${pname}-${version}";
propagatedBuildInputs = [
flask
pygments
xstatic
xstatic-bootbox
xstatic-bootstrap
xstatic-jquery
xstatic-jquery-file-upload
xstatic-jquery-ui
xstatic-pygments
];
src = fetchPypi {
inherit pname version;
sha256 = "0bs79pgrjlnkmjfyj2hllbx3rw757va5w2g2aghi9cydmsl7gyi4";
};
meta = {
homepage = http://github.com/bepasty/bepasty-server;
description = "Binary pastebin server";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.makefu ];
};
}