nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.mailman-fix: drop isPy36 reference

Python 3.6 was dropped a while ago.

+1 -2
+1 -2
pkgs/development/python-modules/mailcap-fix/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , isPy36 5 4 }: 6 5 7 6 buildPythonPackage rec { 8 7 pname = "mailcap-fix"; 9 8 version = "1.0.1"; 10 - disabled = isPy36; # this fix is merged into python 3.6 9 + format = "setuptools"; 11 10 12 11 src = fetchPypi { 13 12 inherit pname version;