faker: 0.0.4 -> 0.7.17

This commit is contained in:
Langston Barrett
2017-07-03 23:33:04 +00:00
committed by Frederik Rietdijk
parent 822b09a514
commit 0dea2d20a7
2 changed files with 37 additions and 16 deletions

View File

@@ -0,0 +1,36 @@
{ stdenv, lib, buildPythonPackage, fetchPypi,
# Build inputs
dateutil, six,
# Test inputs
email_validator, nose, mock, ukpostcodeparser }:
buildPythonPackage rec {
pname = "Faker";
version = "0.7.17";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0n4achwr6dcf67n983ls5cbp5ic3jrwsbl92rzjlzb1xvz1s1js9";
};
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;
};
}