biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / http / hyp / default.nix
blob76562311ac648d8a0e74290e898df1aad47dad20
1 { lib, python3Packages, fetchPypi }:
3 python3Packages.buildPythonPackage rec {
4   pname = "hyp-server";
5   version = "1.2.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1lafjdcn9nnq6xc3hhyizfwh6l69lc7rixn6dx65aq71c913jc15";
10   };
12   meta = with lib; {
13     description = "Hyperminimal https server";
14     mainProgram = "hyp";
15     homepage    = "https://github.com/rnhmjoj/hyp";
16     license     = with licenses; [gpl3Plus mit];
17     maintainers = with maintainers; [ rnhmjoj ];
18     platforms   = platforms.unix;
19   };