2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchurl, python3Packages }:
|
2017-11-04 11:57:58 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonPackage rec {
|
2020-03-29 11:34:50 +01:00
|
|
|
pname = "hyp-server";
|
2017-11-04 11:57:58 +00:00
|
|
|
version = "1.2.0";
|
|
|
|
|
2020-03-29 11:34:50 +01:00
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2017-11-04 11:57:58 +00:00
|
|
|
sha256 = "1lafjdcn9nnq6xc3hhyizfwh6l69lc7rixn6dx65aq71c913jc15";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-11-04 11:57:58 +00:00
|
|
|
description = "Hyperminimal https server";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/rnhmjoj/hyp";
|
2017-11-04 11:57:58 +00:00
|
|
|
license = with licenses; [gpl3Plus mit];
|
|
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|