Skip to content

Commit

Permalink
pycryptodome: init at 3.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
carlsverre committed Nov 24, 2016
1 parent b69f568 commit 99e6b63
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/pycryptodome/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{ stdenv, fetchurl, python, buildPythonPackage, gmp }:

buildPythonPackage rec {
version = "3.4.3";
name = "pycryptodome-${version}";
namePrefix = "";

src = fetchurl {
url = "mirror://pypi/p/pycryptodome/${name}.tar.gz";
sha256 = "1x2kk2va77lqys2dd7gwh35m4vrp052zz5hvv1zqxzksg2srf5jb";
};

meta = {
homepage = "https://www.pycryptodome.org/";
description = "Python Cryptography Toolkit";
platforms = stdenv.lib.platforms.unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,8 @@ in {

pycrypto = callPackage ../development/python-modules/pycrypto { };

pycryptodome = callPackage ../development/python-modules/pycryptodome { };

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

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

0 comments on commit 99e6b63

Please sign in to comment.