python3Packages.types-decorator: 5.1.0 -> 5.1.1

This commit is contained in:
Fabian Affolter
2021-12-28 23:22:41 +01:00
parent d53978239b
commit 87e88fd8c3
@@ -5,17 +5,20 @@
buildPythonPackage rec {
pname = "types-decorator";
version = "5.1.0";
version = "5.1.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-mavQDGFOVOde4I2IeZiGrMKRjMiJBeymR0upF7Mncps=";
sha256 = "sha256-WBcQj9v71OppsQcrG1fJpyakF4z9CBYMtb1PmTdptsE=";
};
# Modules doesn't have tests
doCheck = false;
pythonImportsCheck = [ "decorator-stubs" ];
pythonImportsCheck = [
"decorator-stubs"
];
meta = with lib; {
description = "Typing stubs for decorator";