02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
23 lines
551 B
Nix
23 lines
551 B
Nix
{ lib, fetchPypi, buildPythonPackage, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sslib";
|
|
version = "0.2.0";
|
|
format = "setuptools";
|
|
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 ];
|
|
};
|
|
}
|