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`.
23 lines
473 B
Nix
23 lines
473 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyblake2";
|
|
version = "1.1.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "5ccc7eb02edb82fafb8adbb90746af71460fbc29aa0f822526fc976dff83e93f";
|
|
};
|
|
|
|
# requires setting up sphinx doctest
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "BLAKE2 hash function extension module";
|
|
license = lib.licenses.publicDomain;
|
|
homepage = https://github.com/dchest/pyblake2;
|
|
};
|
|
} |