pycryptodome: init at 3.4.3
This commit is contained in:
parent
b69f568f4c
commit
99e6b63199
18
pkgs/development/python-modules/pycryptodome/default.nix
Normal file
18
pkgs/development/python-modules/pycryptodome/default.nix
Normal file
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -218,6 +218,8 @@ in {
|
|||||||
|
|
||||||
pycrypto = callPackage ../development/python-modules/pycrypto { };
|
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}";
|
pyexiv2 = if (!isPy3k) then callPackage ../development/python-modules/pyexiv2 {} else throw "pyexiv2 not supported for interpreter ${python.executable}";
|
||||||
|
|
||||||
pygame = callPackage ../development/python-modules/pygame { };
|
pygame = callPackage ../development/python-modules/pygame { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user