mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
python3Packages.pyspf: 2.0.14pre -> 2.0.14
This commit is contained in:
parent
f384539a23
commit
6efd5593d0
1 changed files with 6 additions and 3 deletions
|
@ -1,18 +1,21 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub, pydns }:
|
||||
{ lib, python, buildPythonPackage, fetchFromGitHub, pydns }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyspf";
|
||||
version = "2.0.14pre1";
|
||||
version = "2.0.14";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sdgathman";
|
||||
repo = pname;
|
||||
rev = "pyspf-${version}";
|
||||
sha256 = "17d8namkrsmmhc6p4226pffgafivn59qqlj42sq3sma10i09r0c2";
|
||||
sha256 = "0bmimlmwrq9glnjc4i6pwch30n3y5wyqmkjfyayxqxkfrixqwydi";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pydns ];
|
||||
|
||||
# requires /etc/resolv.conf to exist
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = http://bmsi.com/python/milter.html;
|
||||
description = "Python API for Sendmail Milters (SPF)";
|
||||
|
|
Loading…
Reference in a new issue