about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJason \"Don\" O'Conal <lovek323@gmail.com>2013-10-25 11:23:48 +0000
committerEvgeny Egorochkin <phreedom@yandex.ru>2013-10-30 14:17:42 +0200
commita59079065689e42913d39ba6776e12989f96127a (patch)
tree57b9f8a74353e7c4fe1ebae4ebee2ed2749d7617 /pkgs
parent09fa7304ae740f2e2003db6bd186e0de1ced604e (diff)
downloadnixlib-a59079065689e42913d39ba6776e12989f96127a.tar
nixlib-a59079065689e42913d39ba6776e12989f96127a.tar.gz
nixlib-a59079065689e42913d39ba6776e12989f96127a.tar.bz2
nixlib-a59079065689e42913d39ba6776e12989f96127a.tar.lz
nixlib-a59079065689e42913d39ba6776e12989f96127a.tar.xz
nixlib-a59079065689e42913d39ba6776e12989f96127a.tar.zst
nixlib-a59079065689e42913d39ba6776e12989f96127a.zip
pythonPackages.faker, pythonPackages.fake_factory: add expressions
close #1125
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 77db61778c22..00036663b854 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -1402,6 +1402,36 @@ pythonPackages = modules // import ./python-packages-generated.nix {
     };
   };
 
+  faker = buildPythonPackage rec {
+    name = "faker-0.0.4";
+    src = fetchurl {
+      url = https://pypi.python.org/packages/source/F/Faker/Faker-0.0.4.tar.gz;
+      sha256 = "09q5jna3j8di0gw5yjx0dvlndkrk2x9vvqzwyfsvg3nlp8h38js1";
+    };
+    buildInputs = [ nose ];
+    meta = with stdenv.lib; {
+      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;
+    };
+  };
+
+  fake_factory = buildPythonPackage rec {
+    name = "fake-factory-0.2";
+    src = fetchurl {
+      url = https://pypi.python.org/packages/source/f/fake-factory/fake-factory-0.2.tar.gz;
+      sha256 = "0qdmk8p4anrj9mf95dh9v7bkhv1pz69hvhlw380kj4iz7b44b6zn";
+    };
+    meta = with stdenv.lib; {
+      description = "A Python package that generates fake data for you.";
+      homepage    = https://pypi.python.org/pypi/fake-factory;
+      license     = licenses.mit;
+      maintainers = with maintainers; [ lovek323 ];
+      platforms   = platforms.unix;
+    };
+  };
 
   fabric = buildPythonPackage rec {
     name = "fabric-1.6.1";