Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchFromGitHub, buildPythonApplication }: 2 3buildPythonApplication rec { 4 pname = "fypp"; 5 version = "3.1"; 6 7 src = fetchFromGitHub { 8 owner = "aradi"; 9 repo = pname; 10 rev = version; 11 hash = "sha256-iog5Gdcd1F230Nl4JDrKoyYr8JualVgNZQzHLzd4xe8="; 12 }; 13 14 meta = with lib; { 15 description = "Python powered Fortran preprocessor"; 16 homepage = "https://github.com/aradi/fypp"; 17 license = licenses.gpl3Only; 18 maintainers = [ maintainers.sheepforce ]; 19 }; 20}