pythonPackages.pykerberos: init at 1.2.1
This commit is contained in:
parent
e0d23b12ef
commit
aa86f70d18
22
pkgs/development/python-modules/pykerberos/default.nix
Normal file
22
pkgs/development/python-modules/pykerberos/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -411,6 +411,8 @@ in {
|
|||||||
inherit (pkgs.llvmPackages) openmp;
|
inherit (pkgs.llvmPackages) openmp;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pykerberos = callPackage ../development/python-modules/pykerberos { };
|
||||||
|
|
||||||
pynisher = callPackage ../development/python-modules/pynisher { };
|
pynisher = callPackage ../development/python-modules/pynisher { };
|
||||||
|
|
||||||
pyparser = callPackage ../development/python-modules/pyparser { };
|
pyparser = callPackage ../development/python-modules/pyparser { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user