1{
2 lib,
3 fetchPypi,
4 buildPythonPackage,
5}:
6
7buildPythonPackage rec {
8 pname = "pyaes";
9 version = "1.6.1";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "02c1b1405c38d3c370b085fb952dd8bea3fadcee6411ad99f312cc129c536d8f";
15 };
16
17 meta = {
18 description = "Pure-Python AES";
19 license = lib.licenses.mit;
20 homepage = "https://github.com/ricmoo/pyaes";
21 };
22}