summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pytest-base-url/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pytest-base-url/default.nix b/pkgs/development/python-modules/pytest-base-url/default.nix
new file mode 100644
index 000000000000..02b90f742097
--- /dev/null
+++ b/pkgs/development/python-modules/pytest-base-url/default.nix
@@ -0,0 +1,41 @@
+{ lib
+, fetchFromGitHub
+, buildPythonPackage
+, poetry-core
+, pytest
+, pytest-localserver
+, requests
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+ pname = "pytest-base-url";
+ version = "2.0.0";
+ format = "pyproject";
+
+ src = fetchFromGitHub {
+ owner = "pytest-dev";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "sha256-v6pLejWNeb9Do6x2EJqmLKj8DNqcMtmYIs+7iDYsbjk=";
+ };
+
+ nativeBuildInputs = [ poetry-core ];
+
+ buildInputs = [ pytest ];
+
+ propagatedBuildInputs = [ requests ];
+
+ checkInputs = [ pytestCheckHook pytest-localserver ];
+
+ pytestFlagsArray = [ "tests" ];
+
+ pythonImportsCheck = [ "pytest_base_url" ];
+
+ meta = with lib; {
+ description = "pytest plugin for URL based tests";
+ homepage = "https://github.com/pytest-dev/pytest-base-url";
+ license = licenses.mpl20;
+ maintainers = with maintainers; [ sephi ];
+ };
+}