My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/kerberos/default.nix

27 lines
502 B

{ lib
, buildPythonPackage
, fetchPypi
, libkrb5
}:
buildPythonPackage rec {
pname = "kerberos";
version = "1.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "cdd046142a4e0060f96a00eb13d82a5d9ebc0f2d7934393ed559bac773460a2c";
};
nativeBuildInputs = [ libkrb5 ];
# No tests in archive
doCheck = false;
meta = with lib; {
description = "Kerberos high-level interface";
homepage = "https://pypi.python.org/pypi/kerberos";
license = licenses.asl20;
};
}