about summary refs log tree commit diff
path: root/pkgs/development/python-modules/banal
diff options
context:
space:
mode:
authorCole Helbling <cole.e.helbling@outlook.com>2021-04-19 20:58:57 -0700
committerCole Helbling <cole.e.helbling@outlook.com>2021-04-23 09:10:58 -0700
commit2456c3524bb5990ace8f32ac5287b9c4a2626a49 (patch)
tree9aca57238bb1d518880bb7fecad1f11f789eda6e /pkgs/development/python-modules/banal
parent6079757a7a6e03e7899ad845ebea2e35395d7566 (diff)
python3.pkgs.banal: init at 1.0.6
Diffstat (limited to 'pkgs/development/python-modules/banal')
-rw-r--r--pkgs/development/python-modules/banal/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/banal/default.nix b/pkgs/development/python-modules/banal/default.nix
new file mode 100644
index 0000000000000..793de7d3a7659
--- /dev/null
+++ b/pkgs/development/python-modules/banal/default.nix
@@ -0,0 +1,27 @@
+{ lib
+, fetchPypi
+, buildPythonPackage
+}:
+buildPythonPackage rec {
+  pname = "banal";
+  version = "1.0.6";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "2fe02c9305f53168441948f4a03dfbfa2eacc73db30db4a93309083cb0e250a5";
+  };
+
+  # no tests
+  doCheck = false;
+
+  pythonImportsCheck = [
+    "banal"
+  ];
+
+  meta = with lib; {
+    description = "Commons of banal micro-functions for Python";
+    homepage = "https://github.com/pudo/banal";
+    license = licenses.mit;
+    maintainers = teams.determinatesystems.members;
+  };
+}