python3Packages.typing-inspect: init at 0.6.0
This commit is contained in:
parent
db2a5bf3b9
commit
d3fdd46b26
2 changed files with 31 additions and 0 deletions
29
pkgs/development/python-modules/typing-inspect/default.nix
Normal file
29
pkgs/development/python-modules/typing-inspect/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, typing-extensions
|
||||
, mypy-extensions
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "typing-inspect";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "typing_inspect";
|
||||
sha256 = "1dzs9a1pr23dhbvmnvms2jv7l7jk26023g5ysf0zvnq8b791s6wg";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
typing-extensions
|
||||
mypy-extensions
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Runtime inspection utilities for Python typing module";
|
||||
homepage = "https://github.com/ilevkivskyi/typing_inspect";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ albakham ];
|
||||
};
|
||||
}
|
|
@ -5866,6 +5866,8 @@ in {
|
|||
|
||||
typing-extensions = callPackage ../development/python-modules/typing-extensions { };
|
||||
|
||||
typing-inspect = callPackage ../development/python-modules/typing-inspect { };
|
||||
|
||||
typeguard = callPackage ../development/python-modules/typeguard { };
|
||||
|
||||
typesentry = callPackage ../development/python-modules/typesentry { };
|
||||
|
|
Loading…
Reference in a new issue