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
29 lines
609 B
Nix
29 lines
609 B
Nix
{ lib
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, buildPythonPackage }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ed25519-blake2b";
|
|
version = "1.4";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-0aHLkDLsMHzpW0HGGUQP1NP87MGPIkA1zH1tx6fY70A=";
|
|
};
|
|
|
|
pythonImportsCheck = [
|
|
"ed25519_blake2b"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Ed25519 public-key signatures (BLAKE2b fork)";
|
|
homepage = "https://github.com/Matoking/python-ed25519-blake2b";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ onny stargate01 ];
|
|
};
|
|
}
|