python310Packages.types-colorama: init at 0.4.15
This commit is contained in:
parent
2772b97081
commit
ff6ed56c2d
2 changed files with 27 additions and 0 deletions
25
pkgs/development/python-modules/types-colorama/default.nix
Normal file
25
pkgs/development/python-modules/types-colorama/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "types-colorama";
|
||||||
|
version = "0.4.15";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
hash = "sha256-/RKLHjLz/s7F8J30Nm0hSY7obqMfz4tOjxrebQu/mDI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Module has no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Typing stubs for colorama";
|
||||||
|
homepage = "https://github.com/python/typeshed";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -11207,6 +11207,8 @@ in {
|
||||||
|
|
||||||
typer = callPackage ../development/python-modules/typer { };
|
typer = callPackage ../development/python-modules/typer { };
|
||||||
|
|
||||||
|
types-colorama = callPackage ../development/python-modules/types-colorama { };
|
||||||
|
|
||||||
types-dateutil = callPackage ../development/python-modules/types-dateutil { };
|
types-dateutil = callPackage ../development/python-modules/types-dateutil { };
|
||||||
|
|
||||||
types-decorator = callPackage ../development/python-modules/types-decorator { };
|
types-decorator = callPackage ../development/python-modules/types-decorator { };
|
||||||
|
|
Loading…
Reference in a new issue