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

18 lines
416 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "pycryptodomex";
2019-01-17 15:13:05 +00:00
version = "3.7.2";
meta = {
description = "A self-contained cryptographic library for Python";
homepage = https://www.pycryptodome.org;
license = lib.licenses.bsd2;
};
src = fetchPypi {
inherit pname version;
2019-01-17 15:13:05 +00:00
sha256 = "5d4e10ad9ff7940da534119ef92a500dcf7c28351d15e12d74ef0ce025e37d5b";
};
}