summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyaes/default.nix
blob: 6104e72a37bc8133627488debaf329e29bfabbf7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, fetchPypi, buildPythonPackage }:

buildPythonPackage rec {
  pname = "pyaes";
  version = "1.6.1";
  name = "${pname}-${version}";

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

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