about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-01-27 00:47:49 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-01-30 11:01:05 +0100
commit9d392684c241b410c995c7a5ee3f7990c1a1973b (patch)
treebfcda110a3263d8b0dad0a2f249b6b180852723f /pkgs
parentab02f5400e02fa6e270ca62bbf1398317cbb1a3d (diff)
downloadnixlib-9d392684c241b410c995c7a5ee3f7990c1a1973b.tar
nixlib-9d392684c241b410c995c7a5ee3f7990c1a1973b.tar.gz
nixlib-9d392684c241b410c995c7a5ee3f7990c1a1973b.tar.bz2
nixlib-9d392684c241b410c995c7a5ee3f7990c1a1973b.tar.lz
nixlib-9d392684c241b410c995c7a5ee3f7990c1a1973b.tar.xz
nixlib-9d392684c241b410c995c7a5ee3f7990c1a1973b.tar.zst
nixlib-9d392684c241b410c995c7a5ee3f7990c1a1973b.zip
pythonPackages.pytest-aiohttp: init at 0.3.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/pytest-aiohttp/default.nix20
-rw-r--r--pkgs/top-level/python-packages.nix2
2 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pytest-aiohttp/default.nix b/pkgs/development/python-modules/pytest-aiohttp/default.nix
new file mode 100644
index 000000000000..afdc085aa9f5
--- /dev/null
+++ b/pkgs/development/python-modules/pytest-aiohttp/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, buildPythonPackage, fetchPypi, pytest, aiohttp }:
+
+buildPythonPackage rec {
+  pname = "pytest-aiohttp";
+  version = "0.3.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0kx4mbs9bflycd8x9af0idcjhdgnzri3nw1qb0vpfyb3751qaaf9";
+  };
+
+  propagatedBuildInputs = [ pytest aiohttp ];
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/aio-libs/pytest-aiohttp/;
+    description = "Pytest plugin for aiohttp support";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ dotlambda ];
+  };
+}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 4a581a04efab..b266903809e0 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -3217,6 +3217,8 @@ in {
 
   pytest-asyncio = callPackage ../development/python-modules/pytest-asyncio { };
 
+  pytest-aiohttp = callPackage ../development/python-modules/pytest-aiohttp { };
+
   pytestcache = buildPythonPackage rec {
     name = "pytest-cache-1.0";
     src = pkgs.fetchurl {