summary refs log tree commit diff
path: root/pkgs/development/python-modules/sslib/default.nix
blob: 407053785f09c4ace66500a848db1d6b47b745b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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 ];
  };
}