summary refs log blame commit diff
path: root/pkgs/development/python-modules/pyaes/default.nix
blob: 5ca837cdee48eb194d8827f455083d957fdede3f (plain) (tree)
1
2
3
4
5
6
7
8
9



                                       
                    


                          
                                                                                







                                               
{ lib, fetchPypi, buildPythonPackage }:

buildPythonPackage rec {
  pname = "pyaes";
  version = "1.6.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "02c1b1405c38d3c370b085fb952dd8bea3fadcee6411ad99f312cc129c536d8f";
  };

  meta = {
    description = "Pure-Python AES";
    license = lib.licenses.mit;
    homepage = https://github.com/ricmoo/pyaes;
  };
}