3
0
Fork 0
forked from mirrors/nixpkgs

python310Packages.python-utils: don't run mypy

This commit is contained in:
Fabian Affolter 2022-11-26 14:56:15 +01:00
parent 9da870c45d
commit 54434fef79

View file

@ -24,6 +24,7 @@ buildPythonPackage rec {
postPatch = ''
sed -i '/--cov/d' pytest.ini
sed -i '/--mypy/d' pytest.ini
'';
passthru.optional-dependencies = {
@ -49,6 +50,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Module with some convenient utilities";
homepage = "https://github.com/WoLpH/python-utils";
changelog = "https://github.com/wolph/python-utils/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};