mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.lmtpd: upgrade to Python 3
Python 2 support was dropped on
3546d4660f
ZHF: #97479
https://hydra.nixos.org/build/127641301
This commit is contained in:
parent
31a4e2e28b
commit
109c7f95ca
1 changed files with 3 additions and 1 deletions
|
@ -1,9 +1,11 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
{ buildPythonPackage, fetchPypi, isPy3k, stdenv }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "lmtpd";
|
||||
version = "6.2.0";
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "2c6825d2ffa1de099440411a742f58e1b3e8deeb3345adcfd4c2c38d4baf62b3";
|
||||
|
|
Loading…
Reference in a new issue