My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/sslib/default.nix

22 lines
526 B

{ lib, fetchPypi, buildPythonPackage, isPy3k }:
buildPythonPackage rec {
pname = "sslib";
version = "0.2.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0b5zrjkvx4klmv57pzhcmvbkdlyn745mn02k7hp811hvjrhbz417";
};
# No tests available
doCheck = false;
meta = with lib; {
homepage = "https://github.com/jqueiroz/python-sslib";
description = "A Python3 library for sharing secrets";
license = licenses.mit;
maintainers = with maintainers; [ jqueiroz ];
};
}