nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 19 lines 506 B view raw
1{ lib, python3Packages, fetchPypi }: 2 3python3Packages.buildPythonPackage rec { 4 pname = "hyp-server"; 5 version = "1.2.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1lafjdcn9nnq6xc3hhyizfwh6l69lc7rixn6dx65aq71c913jc15"; 10 }; 11 12 meta = with lib; { 13 description = "Hyperminimal https server"; 14 homepage = "https://github.com/rnhmjoj/hyp"; 15 license = with licenses; [gpl3Plus mit]; 16 maintainers = with maintainers; [ rnhmjoj ]; 17 platforms = platforms.unix; 18 }; 19}