nixpkgs/pkgs/development/python-modules/minikerberos/default.nix
2021-02-09 12:01:01 +01:00

33 lines
691 B
Nix

{ lib
, asn1crypto
, asysocks
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "minikerberos";
version = "0.2.9";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-woYs8EYUfALCtqHUCVfF5z1v1UIc9D8Iep9n4NrNIlg=";
};
propagatedBuildInputs = [
asn1crypto
asysocks
];
# no tests are published: https://github.com/skelsec/minikerberos/pull/5
doCheck = false;
pythonImportsCheck = [ "minikerberos" ];
meta = with lib; {
description = "Kerberos manipulation library in Python";
homepage = "https://github.com/skelsec/minikerberos";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}