faker: 0.0.4 -> 0.7.17
This commit is contained in:
committed by
Frederik Rietdijk
parent
822b09a514
commit
0dea2d20a7
36
pkgs/development/python-modules/faker/default.nix
Normal file
36
pkgs/development/python-modules/faker/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user