forked from mirrors/nixpkgs
ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
18 lines
420 B
Nix
18 lines
420 B
Nix
{ stdenv, fetchPypi, python, buildPythonPackage, gmp }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "3.6.2";
|
|
pname = "pycryptodome";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "b19ed0f7752a0b1ec65834c9acb02ba64a812990854e318d32a619c709b14a69";
|
|
};
|
|
|
|
meta = {
|
|
homepage = https://www.pycryptodome.org/;
|
|
description = "Python Cryptography Toolkit";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|