3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.pyaes: init at 1.6.0

This commit is contained in:
Joachim Fasting 2017-03-11 14:00:41 +01:00
parent 9cc2083dac
commit 617d8af325
No known key found for this signature in database
GPG key ID: 7544761007FE4E08
2 changed files with 20 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -289,6 +289,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 { };