about summary refs log tree commit diff
path: root/pkgs/development/python-modules/wrapt
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-11-22 16:06:48 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-01-01 12:37:44 +0100
commitee3363259c540248b1e7c1e4ad72e67054e181d5 (patch)
treec687075a0d0cb238b2e4da3026a7b38ee37ab48d /pkgs/development/python-modules/wrapt
parentc7413438d8415d26d05ae2e587a7ef5685574254 (diff)
python3Packages.wrapt: enable tests
Diffstat (limited to 'pkgs/development/python-modules/wrapt')
-rw-r--r--pkgs/development/python-modules/wrapt/default.nix28
1 files changed, 19 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/wrapt/default.nix b/pkgs/development/python-modules/wrapt/default.nix
index e567a8a672ef8..b53c52d6098a2 100644
--- a/pkgs/development/python-modules/wrapt/default.nix
+++ b/pkgs/development/python-modules/wrapt/default.nix
@@ -1,23 +1,33 @@
 { lib
 , buildPythonPackage
-, fetchPypi
+, fetchFromGitHub
+, pytestCheckHook
 }:
 
 buildPythonPackage rec {
   pname = "wrapt";
   version = "1.13.3";
+  format = "setuptools";
 
-  # No tests in archive
-  doCheck = false;
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "1fea9cd438686e6682271d36f3481a9f3636195578bab9ca3382e2f5f01fc185";
+  src = fetchFromGitHub {
+    owner = "GrahamDumpleton";
+    repo = pname;
+    rev = version;
+    hash = "sha256-kq3Ujkn4HzonzjuQfVnPNnQV+2Rnbr3ZfYmrnY3upxU=";
   };
 
-  meta = {
+  checkInputs = [
+    pytestCheckHook
+  ];
+
+  pythonImportsCheck = [
+    "wrapt"
+  ];
+
+  meta = with lib; {
     description = "Module for decorators, wrappers and monkey patching";
-    license = lib.licenses.bsd2;
     homepage = "https://github.com/GrahamDumpleton/wrapt";
+    license = licenses.bsd2;
+    maintainers = with maintainers; [ ];
   };
 }