about summary refs log tree commit diff
path: root/pkgs/development/python-modules/flexparser/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/flexparser/default.nix')
-rw-r--r--pkgs/development/python-modules/flexparser/default.nix32
1 files changed, 25 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/flexparser/default.nix b/pkgs/development/python-modules/flexparser/default.nix
index b0ec855ed2299..60ab74a5546ef 100644
--- a/pkgs/development/python-modules/flexparser/default.nix
+++ b/pkgs/development/python-modules/flexparser/default.nix
@@ -2,9 +2,19 @@
   lib,
   buildPythonPackage,
   fetchFromGitHub,
+
+  # build-system
+  setuptools,
   setuptools-scm,
+  wheel,
+
+  # dependencies
   typing-extensions,
+
+  # checks
   pytestCheckHook,
+  pytest-mpl,
+  pytest-subtests,
 }:
 
 buildPythonPackage rec {
@@ -15,23 +25,31 @@ buildPythonPackage rec {
   src = fetchFromGitHub {
     owner = "hgrecco";
     repo = "flexparser";
-    rev = "refs/tags/${version}";
+    rev = version;
     hash = "sha256-9ImG8uh1SZ+pAbqzWBkTVn+3EBAGzzdP8vqqP59IgIw=";
   };
 
-  build-system = [ setuptools-scm ];
+  nativeBuildInputs = [
+    setuptools
+    setuptools-scm
+    wheel
+  ];
 
-  dependencies = [ typing-extensions ];
+  propagatedBuildInputs = [ typing-extensions ];
 
-  nativeCheckInputs = [ pytestCheckHook ];
+  nativeCheckInputs = [
+    pytestCheckHook
+    pytest-mpl
+    pytest-subtests
+  ];
 
   pythonImportsCheck = [ "flexparser" ];
 
-  meta = {
+  meta = with lib; {
     description = "Parsing made fun ... using typing";
     homepage = "https://github.com/hgrecco/flexparser";
     changelog = "https://github.com/hgrecco/flexparser/blob/${src.rev}/CHANGES";
-    license = lib.licenses.bsd3;
-    maintainers = with lib.maintainers; [ doronbehar ];
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ doronbehar ];
   };
 }