mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
faker: 0.0.4 -> 0.7.17
This commit is contained in:
parent
822b09a514
commit
0dea2d20a7
2 changed files with 37 additions and 16 deletions
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;
|
||||
};
|
||||
}
|
|
@ -5960,22 +5960,7 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
faker = buildPythonPackage rec {
|
||||
name = "faker-0.0.4";
|
||||
disabled = isPy3k;
|
||||
src = pkgs.fetchurl {
|
||||
url = mirror://pypi/F/Faker/Faker-0.0.4.tar.gz;
|
||||
sha256 = "09q5jna3j8di0gw5yjx0dvlndkrk2x9vvqzwyfsvg3nlp8h38js1";
|
||||
};
|
||||
buildInputs = with self; [ nose ];
|
||||
meta = {
|
||||
description = "A Python library for generating fake user data";
|
||||
homepage = http://pypi.python.org/pypi/Faker;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
};
|
||||
faker = callPackage ../development/python-modules/faker { };
|
||||
|
||||
fake_factory = buildPythonPackage rec {
|
||||
name = "fake-factory-${version}";
|
||||
|
|
Loading…
Reference in a new issue