about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/trampoline/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/trampoline/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/trampoline/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/trampoline/default.nix b/nixpkgs/pkgs/development/python-modules/trampoline/default.nix
new file mode 100644
index 000000000000..2be2ff6e819d
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/trampoline/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitLab
+, pytestCheckHook
+}:
+
+buildPythonPackage {
+  pname = "trampoline";
+  version = "0.1.2";
+  format = "setuptools";
+
+  # only wheel on pypi, no tags on git
+  src = fetchFromGitLab {
+    owner = "ferreum";
+    repo = "trampoline";
+    rev = "1d98f39c3015594e2ac8ed48dccc2f393b4dd82b";
+    hash = "sha256-A/tuR+QW9sKh76Qjwn1uQxlVJgWrSFzXeBRDdnSi2o4=";
+  };
+
+  pythonImportsCheck = [
+    "trampoline"
+  ];
+
+  nativeCheckInputs = [
+    pytestCheckHook
+  ];
+
+  meta = with lib; {
+    description = "Simple and tiny yield-based trampoline implementation for python";
+    homepage = "https://gitlab.com/ferreum/trampoline";
+    license = licenses.mit;
+    maintainers = teams.tts.members;
+  };
+}