summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-asyncio
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2017-04-26 14:28:39 +0200
committerLancelot SIX <lsix@lancelotsix.com>2017-05-02 09:25:30 +0200
commit0743b0fb6e07e5893b4db72bfbf0f22e99e66acb (patch)
treed4433c78ae8aa7b86d2ee87ffac1d275632a7ad9 /pkgs/development/python-modules/pytest-asyncio
parentdf79a196386b210a8bc1508471f420c28cf05edb (diff)
downloadnixpkgs-0743b0fb6e07e5893b4db72bfbf0f22e99e66acb.tar
nixpkgs-0743b0fb6e07e5893b4db72bfbf0f22e99e66acb.tar.gz
nixpkgs-0743b0fb6e07e5893b4db72bfbf0f22e99e66acb.tar.bz2
nixpkgs-0743b0fb6e07e5893b4db72bfbf0f22e99e66acb.tar.lz
nixpkgs-0743b0fb6e07e5893b4db72bfbf0f22e99e66acb.tar.xz
nixpkgs-0743b0fb6e07e5893b4db72bfbf0f22e99e66acb.tar.zst
nixpkgs-0743b0fb6e07e5893b4db72bfbf0f22e99e66acb.zip
pythonPackages.pytest-asyncio: init at 0.5.0
Diffstat (limited to 'pkgs/development/python-modules/pytest-asyncio')
-rw-r--r--pkgs/development/python-modules/pytest-asyncio/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pytest-asyncio/default.nix b/pkgs/development/python-modules/pytest-asyncio/default.nix
new file mode 100644
index 00000000000..a8e3f7e0268
--- /dev/null
+++ b/pkgs/development/python-modules/pytest-asyncio/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, buildPythonPackage, fetchurl, pytest }:
+buildPythonPackage rec {
+  name = "${pname}-${version}";
+  pname = "pytest-asyncio";
+  version = "0.5.0";
+
+  src = fetchurl {
+    url = "mirror://pypi/p/${pname}/${name}.tar.gz";
+    sha256 = "03sxq8fglr4lw4y6wqlbli9ypr65fxzx6hlpn5wpccx8v5472iff";
+  };
+
+  buildInputs = [ pytest ];
+
+  meta = with stdenv.lib; {
+    description = "library for testing asyncio code with pytest";
+    license = licenses.asl20;
+    homepage = https://github.com/pytest-dev/pytest-asyncio;
+  };
+}