about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorEvan Stoll <evanjsx@gmail.com>2020-03-13 22:32:07 -0400
committerJon <jonringer@users.noreply.github.com>2020-06-13 15:05:11 -0700
commit091c2979ee4e814c130807f613513ed2ad115a16 (patch)
tree1d5bd39fc76ba3109ed0681c9ca7498633e6144e /pkgs/development/python-modules
parente25e560120054e56377fa0612f693d73e85da6b7 (diff)
downloadnixlib-091c2979ee4e814c130807f613513ed2ad115a16.tar
nixlib-091c2979ee4e814c130807f613513ed2ad115a16.tar.gz
nixlib-091c2979ee4e814c130807f613513ed2ad115a16.tar.bz2
nixlib-091c2979ee4e814c130807f613513ed2ad115a16.tar.lz
nixlib-091c2979ee4e814c130807f613513ed2ad115a16.tar.xz
nixlib-091c2979ee4e814c130807f613513ed2ad115a16.tar.zst
nixlib-091c2979ee4e814c130807f613513ed2ad115a16.zip
pythonPackages.fake-useragent: init at 0.1.11
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/fake-useragent/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/fake-useragent/default.nix b/pkgs/development/python-modules/fake-useragent/default.nix
new file mode 100644
index 000000000000..fb85408dd3d2
--- /dev/null
+++ b/pkgs/development/python-modules/fake-useragent/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchPypi, buildPythonPackage, six, pytest }:
+
+buildPythonPackage rec {
+  pname = "fake-useragent";
+  version = "0.1.11";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0dfz3bpmjmaxlhda6hfgsac7afb65pljibi8zkp9gc0ffn5rj161";
+  };
+
+  propagatedBuildInputs = [ six ];
+
+  checkInputs = [ pytest ];
+
+  meta = with stdenv.lib; {
+    description = "Up to date simple useragent faker with real world database";
+    homepage = "https://github.com/hellysmile/fake-useragent";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ evanjs ];
+  };
+}