mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
28 lines
586 B
Nix
28 lines
586 B
Nix
{ lib
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, buildPythonPackage }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ed25519-blake2b";
|
|
version = "1.4";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "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 ];
|
|
};
|
|
}
|