depot/nix/pkgs/baserow/backend/pynixify/packages/faker/default.nix

27 lines
726 B
Nix
Raw Normal View History

2021-12-21 00:18:16 +00:00
# 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, dateutil, fetchPypi, lib, text-unidecode }:
buildPythonPackage rec {
pname = "faker";
version = "8.11.0";
src = fetchPypi {
inherit version;
pname = "Faker";
sha256 = "14bqdb7wngxlr9n25syab6i7dr9xjkxlq0wy31aar8yxlffixs5r";
};
propagatedBuildInputs = [ dateutil text-unidecode ];
# TODO FIXME
doCheck = false;
meta = with lib; {
description = "Faker is a Python package that generates fake data for you.";
homepage = "https://github.com/joke2k/faker";
};
}