Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / minikerberos / default.nix
blob54b2de45056e0363bc565e0245105f0832b28c45
1 { lib
2 , asn1crypto
3 , asysocks
4 , buildPythonPackage
5 , fetchPypi
6 , oscrypto
7 , pythonOlder
8 , six
9 , tqdm
10 , unicrypto
13 buildPythonPackage rec {
14   pname = "minikerberos";
15   version = "0.4.4";
16   format = "setuptools";
18   disabled = pythonOlder "3.7";
20   src = fetchPypi {
21     inherit pname version;
22     hash = "sha256-GweGHGxAOLZqOnVdzOtw0xuvsrKsaB1gf1xZ/WuFR7w=";
23   };
25   propagatedBuildInputs = [
26     asn1crypto
27     asysocks
28     oscrypto
29     six
30     tqdm
31     unicrypto
32   ];
34   # no tests are published: https://github.com/skelsec/minikerberos/pull/5
35   doCheck = false;
37   pythonImportsCheck = [
38     "minikerberos"
39   ];
41   meta = with lib; {
42     description = "Kerberos manipulation library in Python";
43     homepage = "https://github.com/skelsec/minikerberos";
44     changelog = "https://github.com/skelsec/minikerberos/releases/tag/${version}";
45     license = with licenses; [ mit ];
46     maintainers = with maintainers; [ fab ];
47   };