Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, isPy27 5, click 6}: 7 8buildPythonPackage rec { 9 pname = "maildir-deduplicate"; 10 version = "2.1.0"; 11 disabled = !isPy27; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "263c7f2c85dafe06eaa15e8d7ab83817204f70a5f08cc25a607f3f01ed130b42"; 16 }; 17 18 propagatedBuildInputs = [ click ]; 19 20 meta = with stdenv.lib; { 21 description = "Command-line tool to deduplicate mails from a set of maildir folders"; 22 homepage = "https://github.com/kdeldycke/maildir-deduplicate"; 23 license = licenses.gpl2; 24 }; 25 26}