Merge pull request #12147 from rnhmjoj/hyp

hyp: init at 1.2.0
This commit is contained in:
Pascal Wittmann 2016-01-05 11:06:33 +01:00
commit 9a2bdbf24b

View File

@ -6309,6 +6309,24 @@ in modules // {
doCheck = false;
};
hyp = buildPythonPackage rec {
name = "hyp-server-${version}";
version = "1.2.0";
disabled = !isPy3k;
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/h/hyp-server/${name}.tar.gz";
sha256 = "1lafjdcn9nnq6xc3hhyizfwh6l69lc7rixn6dx65aq71c913jc15";
};
meta = {
description = "Hyperminimal https server";
homepage = https://github.com/rnhmjoj/hyp;
license = with licenses; [gpl3Plus mit];
maintainers = with maintainers; [ rnhmjoj ];
platforms = platforms.unix;
};
};
hypatia = buildPythonPackage rec {
name = "hypatia-0.3";