about summary refs log tree commit diff
path: root/pkgs/development/python-modules/types-typed-ast
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2021-10-05 11:43:12 -0300
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-11-18 14:16:50 +0100
commit5f2f409a2649da5b011ae8e490fe023657384bcb (patch)
treec18a2fd0b61ee9c0f109dbc65fec5d88a7e8ebc9 /pkgs/development/python-modules/types-typed-ast
parent8a976728e35bf1e8933bc2a48c16adbbd0bdff38 (diff)
python39Packages.types-typed-ast: init 1.4.4
Co-authored-by: @jnetod @veehaitch @nbraud
Diffstat (limited to 'pkgs/development/python-modules/types-typed-ast')
-rw-r--r--pkgs/development/python-modules/types-typed-ast/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/types-typed-ast/default.nix b/pkgs/development/python-modules/types-typed-ast/default.nix
new file mode 100644
index 0000000000000..2ba006b578c4d
--- /dev/null
+++ b/pkgs/development/python-modules/types-typed-ast/default.nix
@@ -0,0 +1,26 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "types-typed-ast";
+  version = "1.4.4";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "ffa0471e0ba19c4ea0cba0436d660871b5f5215854ea9ead3cb5b60f525af75a";
+  };
+
+  # Module doesn't have tests
+  doCheck = false;
+
+  pythonImportsCheck = [ "typed_ast-stubs" ];
+
+  meta = with lib; {
+    description = "Typing stubs for typed-ast";
+    homepage = "https://github.com/python/typeshed";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ superherointj veehaitch ];
+  };
+}