fypp: init at 3.1
fypp: fix homepage fypp: fix package call
This commit is contained in:
parent
9a677e0f8c
commit
a4e5168f0f
2 changed files with 22 additions and 0 deletions
20
pkgs/development/python-modules/fypp/default.nix
Normal file
20
pkgs/development/python-modules/fypp/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{ lib, stdenv, fetchFromGitHub, buildPythonApplication }:
|
||||||
|
|
||||||
|
buildPythonApplication rec {
|
||||||
|
pname = "fypp";
|
||||||
|
version = "3.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "aradi";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-iog5Gdcd1F230Nl4JDrKoyYr8JualVgNZQzHLzd4xe8=";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python powered Fortran preprocessor";
|
||||||
|
homepage = "https://github.com/aradi/fypp";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
maintainers = [ maintainers.sheepforce ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -22950,6 +22950,8 @@ with pkgs;
|
||||||
|
|
||||||
toml-f = callPackage ../development/libraries/toml-f { };
|
toml-f = callPackage ../development/libraries/toml-f { };
|
||||||
|
|
||||||
|
fypp = python3Packages.callPackage ../development/python-modules/fypp { };
|
||||||
|
|
||||||
## libGL/libGLU/Mesa stuff
|
## libGL/libGLU/Mesa stuff
|
||||||
|
|
||||||
# Default libGL implementation, should provide headers and
|
# Default libGL implementation, should provide headers and
|
||||||
|
|
Loading…
Reference in a new issue