mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
18 lines
407 B
Nix
18 lines
407 B
Nix
{ stdenv, fetchPypi, buildPythonPackage }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "3.9.0";
|
|
pname = "pycryptodome";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "dbeb08ad850056747aa7d5f33273b7ce0b9a77910604a1be7b7a6f2ef076213f";
|
|
};
|
|
|
|
meta = {
|
|
homepage = https://www.pycryptodome.org/;
|
|
description = "Python Cryptography Toolkit";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|