nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python310Packages.minikerberos: 0.3.3 -> 0.3.5

Changelog: https://github.com/skelsec/minikerberos/releases/tag/0.3.5

+4 -2
+4 -2
pkgs/development/python-modules/minikerberos/default.nix
··· 5 5 , fetchPypi 6 6 , oscrypto 7 7 , pythonOlder 8 + , tqdm 8 9 , unicrypto 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "minikerberos"; 13 - version = "0.3.3"; 14 + version = "0.3.5"; 14 15 format = "setuptools"; 15 16 16 17 disabled = pythonOlder "3.7"; 17 18 18 19 src = fetchPypi { 19 20 inherit pname version; 20 - hash = "sha256-xO7d5GCihEzIH/DZziRR1SRpzAywPe99WJXeRyuh7S8="; 21 + hash = "sha256-FjeMtf09I2EksVUwZ2UCndmmqqnyTvtgh58HSrqVShw="; 21 22 }; 22 23 23 24 propagatedBuildInputs = [ 24 25 asn1crypto 25 26 asysocks 26 27 oscrypto 28 + tqdm 27 29 unicrypto 28 30 ]; 29 31