Skip to content

Commit

Permalink
pythonPackages.pyaes: init at 1.6.0
Browse files Browse the repository at this point in the history
(cherry picked from commit 617d8af)

For electrum
  • Loading branch information
joachifm committed Mar 23, 2017
1 parent 1a1d365 commit 5d7139b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pkgs/development/python-modules/pyaes.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{ lib, fetchPypi, buildPythonPackage }:

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

src = fetchPypi {
inherit pname version;
sha256 = "0bp9bjqy1n6ij1zb86wz9lqa1dhla8qr1d7w2kxyn7jbj56sbmcw";
};

meta = {
description = "Pure-Python AES";
license = lib.licenses.mit;
homepage = https://github.com/ricmoo/pyaes;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,8 @@ in {

plantuml = callPackage ../tools/misc/plantuml { };

pyaes = callPackage ../development/python-modules/pyaes.nix { };

pyatspi = if isPy3k then callPackage ../development/python-modules/pyatspi { } else throw "pyatspi not supported for interpreter ${python.executable}";

pycairo = callPackage ../development/python-modules/pycairo { };
Expand Down

0 comments on commit 5d7139b

Please sign in to comment.