summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-utils
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-11-26 14:56:15 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-11-26 14:56:15 +0100
commit54434fef794d0de57b6f02fbfc7239b250900617 (patch)
tree0881ffb808d4c1688d37775d79e1474d94fe898b /pkgs/development/python-modules/python-utils
parent9da870c45d82307e05838cf91c57372deaf10e20 (diff)
python310Packages.python-utils: don't run mypy
Diffstat (limited to 'pkgs/development/python-modules/python-utils')
-rw-r--r--pkgs/development/python-modules/python-utils/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-utils/default.nix b/pkgs/development/python-modules/python-utils/default.nix
index 40e963763f02..a853c9341bbf 100644
--- a/pkgs/development/python-modules/python-utils/default.nix
+++ b/pkgs/development/python-modules/python-utils/default.nix
@@ -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; [ ];
};