python39Packages.mypy_extensions: little cleanup, add SuperSandro2000 as maintainer

This commit is contained in:
Sandro Jäckel 2021-11-15 00:35:59 +01:00
parent 5f2f409a26
commit a5691cfc9a
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -13,12 +13,12 @@ buildPythonPackage rec {
sha256 = "2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8";
};
propagatedBuildInputs = if pythonOlder "3.5" then [ typing ] else [ ];
propagatedBuildInputs = lib.optional (pythonOlder "3.5") typing;
meta = with lib; {
description = "Experimental type system extensions for programs checked with the mypy typechecker";
homepage = "http://www.mypy-lang.org";
license = licenses.mit;
maintainers = with maintainers; [ martingms lnl7 ];
homepage = "http://www.mypy-lang.org";
license = licenses.mit;
maintainers = with maintainers; [ martingms lnl7 SuperSandro2000 ];
};
}