3
0
Fork 0
forked from mirrors/nixpkgs

hyp: init at 1.2.0

This commit is contained in:
rnhmjoj 2016-01-04 22:58:03 +01:00
parent 146784f835
commit f22b28764c

View file

@ -6049,6 +6049,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";