diff options
Diffstat (limited to 'pkgs/development/python-modules/dkimpy/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/dkimpy/default.nix | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/dkimpy/default.nix b/pkgs/development/python-modules/dkimpy/default.nix index 541c3bef56e9..b061554987c4 100644 --- a/pkgs/development/python-modules/dkimpy/default.nix +++ b/pkgs/development/python-modules/dkimpy/default.nix @@ -1,5 +1,14 @@ -{ lib, fetchPypi, openssl, buildPythonPackage -, pytest, dnspython, pynacl, authres, python }: +{ + lib, + fetchPypi, + openssl, + buildPythonPackage, + pytest, + dnspython, + pynacl, + authres, + python, +}: buildPythonPackage rec { pname = "dkimpy"; @@ -9,10 +18,15 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; hash = "sha256-DOctlh9EPo+fBWlLNUVC3uU04I4rjFtgxi1drKfB2g8="; -}; + }; nativeCheckInputs = [ pytest ]; - propagatedBuildInputs = [ openssl dnspython pynacl authres ]; + propagatedBuildInputs = [ + openssl + dnspython + pynacl + authres + ]; patchPhase = '' substituteInPlace dkim/dknewkey.py --replace \ |
