summary refs log tree commit diff
path: root/pkgs/development/python-modules/sslib/default.nix
blob: 0f1edfd31bded86422762a747b14bba333d5f150 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, 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 stdenv.lib; {
    homepage = "https://github.com/jqueiroz/python-sslib";
    description = "A Python3 library for sharing secrets";
    license = licenses.mit;
    maintainers = with maintainers; [ jqueiroz ];
  };
}