tutanota-desktop: 259.250108.1 -> 266.250202.0 (#377234)
[NixPkgs.git] / pkgs / development / python-modules / pyaes / default.nix
blobe38123f54e246e73172a7348b3c2aaa102fafbd0
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5 }:
7 buildPythonPackage rec {
8   pname = "pyaes";
9   version = "1.6.1";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "02c1b1405c38d3c370b085fb952dd8bea3fadcee6411ad99f312cc129c536d8f";
15   };
17   meta = {
18     description = "Pure-Python AES";
19     license = lib.licenses.mit;
20     homepage = "https://github.com/ricmoo/pyaes";
21   };