26 lines
740 B
Nix
26 lines
740 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, python-dateutil, fetchPypi, lib, text-unidecode }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "faker";
|
|
version = "8.11.0";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "Faker";
|
|
sha256 = "14bqdb7wngxlr9n25syab6i7dr9xjkxlq0wy31aar8yxlffixs5r";
|
|
};
|
|
|
|
propagatedBuildInputs = [ python-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";
|
|
};
|
|
}
|