4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
35 lines
1.0 KiB
Nix
35 lines
1.0 KiB
Nix
{ lib, stdenv, buildPythonPackage, fetchPypi, dnspython, chardet, lmtpd
|
|
, python-daemon, six, jinja2, mock, click }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "salmon-mail";
|
|
version = "3.2.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0q2m6xri1b7qv46rqpv2qfdgk2jvswj8lpaacnxwjna3m685fhfx";
|
|
};
|
|
|
|
checkInputs = [ jinja2 mock ];
|
|
propagatedBuildInputs = [ chardet dnspython lmtpd python-daemon six click ];
|
|
|
|
# Darwin tests fail without this. See:
|
|
# https://github.com/NixOS/nixpkgs/pull/82166#discussion_r399909846
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
# The tests use salmon executable installed by salmon itself so we need to add
|
|
# that to PATH
|
|
checkPhase = ''
|
|
# tests fail and pytest is not supported
|
|
rm tests/server_tests.py
|
|
PATH=$out/bin:$PATH python setup.py test
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://salmon-mail.readthedocs.org/";
|
|
description = "Pythonic mail application server";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ jluttine ];
|
|
};
|
|
}
|