summary refs log tree commit diff
path: root/pkgs/development/python-modules/faker/default.nix
blob: ce6887f3e062bd4c66568493c6df9a6db48cb7c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv, lib, buildPythonPackage, fetchPypi,
  # Build inputs
  dateutil, six,
  # Test inputs
  email_validator, nose, mock, ukpostcodeparser }:

buildPythonPackage rec {
  pname = "Faker";
  version = "0.7.18";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "310b20f3c497a777622920dca314d90f774028d49c7ee7ccfa96ca4b9d9bf429";
  };

  checkInputs = [
    email_validator
    nose
    mock
    ukpostcodeparser
  ];

  propagatedBuildInputs = [
    dateutil
    six
  ];

  meta = with lib; {
    description = "A Python library for generating fake user data";
    homepage    = http://faker.rtfd.org;
    license     = licenses.mit;
    maintainers = with maintainers; [ lovek323 ];
    platforms   = platforms.unix;
  };
}