mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
23 lines
484 B
Nix
23 lines
484 B
Nix
{ stdenv, fetchPypi, buildPythonPackage, krb5 }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pykerberos";
|
|
version = "1.2.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0v47p840myqgc7hr4lir72xshcfpa0w8j9n077h3njpqyn6wlbag";
|
|
};
|
|
|
|
buildInputs = [ krb5 ];
|
|
|
|
# there are no tests
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "High-level interface to Kerberos";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ catern ];
|
|
};
|
|
}
|