17 lines
460 B
Nix
17 lines
460 B
Nix
# WARNING: This file was automatically generated. You should avoid editing it.
|
|
# If you run pynixify again, the file will be either overwritten or
|
|
# deleted, and you will lose the changes you made to it.
|
|
|
|
{ buildPythonPackage, fetchPypi, lib }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "baserow-premium-backend";
|
|
version = "0.1dev";
|
|
|
|
src = lib.cleanSource ../../..;
|
|
|
|
# TODO FIXME
|
|
doCheck = false;
|
|
|
|
meta = with lib; { homepage = "https://baserow.io"; };
|
|
}
|