1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 03:53:41 +00:00
nixpkgs/pkgs/development/python-modules/pycryptodomex/default.nix

18 lines
418 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "pycryptodomex";
2020-07-31 09:56:44 +01:00
version = "3.9.8";
meta = {
description = "A self-contained cryptographic library for Python";
homepage = "https://www.pycryptodome.org";
license = lib.licenses.bsd2;
};
src = fetchPypi {
inherit pname version;
2020-07-31 09:56:44 +01:00
sha256 = "48cc2cfc251f04a6142badeb666d1ff49ca6fdfc303fd72579f62b768aaa52b9";
};
}