f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
19 lines
480 B
Nix
19 lines
480 B
Nix
{ stdenv, fetchurl, python, buildPythonPackage, gmp }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "3.4.6";
|
|
pname = "pycryptodome";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/p/pycryptodome/${name}.tar.gz";
|
|
sha256 = "df1be662060cf3abdcf2086ebb401f750744106425ddebf74c57feab410e4923";
|
|
};
|
|
|
|
meta = {
|
|
homepage = https://www.pycryptodome.org/;
|
|
description = "Python Cryptography Toolkit";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|