pythonPackages.zerobin : init at 20160108

This commit is contained in:
Théophane Hufschmitt 2016-04-20 07:21:36 +02:00
parent 21f6437365
commit 22e2cfe92b

View file

@ -26664,4 +26664,28 @@ in modules // {
license = licenses.mit;
};
};
zerobin = buildPythonPackage rec {
name = "zerobin-${version}";
version = "20160108";
src = pkgs.fetchFromGitHub {
owner = "sametmax";
repo = "0bin";
rev = "7da1615";
sha256 = "1pzcwy454kn5216pvwjqzz311s6jbh7viw9s6kw4xps6f5h44bid";
};
propagatedBuildInputs = with self; [
cherrypy
bottle
lockfile
clize
];
meta = {
description = "A client side encrypted pastebin";
homepage = "http://0bin.net/";
license = licenses.wtfpl;
};
};
}