summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-metadata
diff options
context:
space:
mode:
authorMillian Poquet <millian.poquet@inria.fr>2020-03-12 11:25:31 +0100
committerJon <jonringer@users.noreply.github.com>2020-03-24 12:24:49 -0700
commitebed789ad4c7c0febcefed767b27b52e0a06d714 (patch)
treeb54076b67de36c16019efeb6d1106419cfb8a53f /pkgs/development/python-modules/pytest-metadata
parent85b91c7bb6df501b71d6cd26ce8c27e2d8d864ba (diff)
downloadnixpkgs-ebed789ad4c7c0febcefed767b27b52e0a06d714.tar
nixpkgs-ebed789ad4c7c0febcefed767b27b52e0a06d714.tar.gz
nixpkgs-ebed789ad4c7c0febcefed767b27b52e0a06d714.tar.bz2
nixpkgs-ebed789ad4c7c0febcefed767b27b52e0a06d714.tar.lz
nixpkgs-ebed789ad4c7c0febcefed767b27b52e0a06d714.tar.xz
nixpkgs-ebed789ad4c7c0febcefed767b27b52e0a06d714.tar.zst
nixpkgs-ebed789ad4c7c0febcefed767b27b52e0a06d714.zip
pythonPackages.pytest-metadata: init at 1.8.0
Diffstat (limited to 'pkgs/development/python-modules/pytest-metadata')
-rw-r--r--pkgs/development/python-modules/pytest-metadata/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pytest-metadata/default.nix b/pkgs/development/python-modules/pytest-metadata/default.nix
new file mode 100644
index 00000000000..369ddf2c476
--- /dev/null
+++ b/pkgs/development/python-modules/pytest-metadata/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, pytest, setuptools_scm }:
+
+buildPythonPackage rec {
+  pname = "pytest-metadata";
+  version = "1.8.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1fk6icip2x1nh4kzhbc8cnqrs77avpqvj7ny3xadfh6yhn9aaw90";
+  };
+
+  nativeBuildInputs = [ setuptools_scm ];
+  propagatedBuildInputs = [ pytest ];
+
+  meta = with stdenv.lib; {
+    description = "Plugin for accessing test session metadata";
+    homepage = "https://github.com/pytest-dev/pytest-metadata";
+    license = licenses.mpl20;
+    maintainers = with maintainers; [ mpoquet ];
+  };
+}