1
0
mirror of https://github.com/kmein/niveum synced 2026-03-22 12:51:08 +01:00

chore: nixfmt

This commit is contained in:
Kierán Meinhardt
2020-06-10 17:37:25 +02:00
parent 2c3957735b
commit d8a4d4eedf
90 changed files with 1461 additions and 985 deletions

View File

@@ -1,6 +1,7 @@
# { stdenv, python }:
{ pkgs ? import <nixpkgs> {} }:
with pkgs; with pkgs.python2Packages;
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
with pkgs.python2Packages;
buildPythonApplication rec {
pname = "gourmet";
@@ -10,7 +11,5 @@ buildPythonApplication rec {
};
buildInputs = [ distutils_extra intltool ];
propagatedBuildInputs = [ sqlalchemy reportlab lxml ];
meta = with stenv.lib; {
maintainers = with maintainers; [ kmein ];
};
meta = with stenv.lib; { maintainers = with maintainers; [ kmein ]; };
}