summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/stringparser/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/stringparser/default.nix')
-rw-r--r--pkgs/development/python-modules/stringparser/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/stringparser/default.nix b/pkgs/development/python-modules/stringparser/default.nix
new file mode 100644
index 000000000000..bac315950781
--- /dev/null
+++ b/pkgs/development/python-modules/stringparser/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, buildPythonPackage
+, pythonOlder
+, fetchFromGitHub
+, setuptools
+, setuptools-scm
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+ pname = "stringparser";
+ version = "0.6";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.5";
+
+ src = fetchFromGitHub {
+ owner = "hgrecco";
+ repo = pname;
+ rev = version;
+ sha256 = "sha256-uyeHuH0UfpZqh7sMRI6+fR/Rr2jSzdR+5O/MtzslO5w=";
+ };
+
+ nativeBuildInputs = [ setuptools setuptools-scm ];
+
+ pythonImportsCheck = [ "stringparser" ];
+
+ nativeCheckInputs = [ pytestCheckHook ];
+
+ meta = with lib; {
+ description = "Easy to use pattern matching and information extraction";
+ homepage = "https://github.com/hgrecco/stringparser";
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ evilmav ];
+ };
+}