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`.
22 lines
570 B
Nix
22 lines
570 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, pyasn1, isPyPy }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyasn1-modules";
|
|
version = "0.2.1";
|
|
disabled = isPyPy;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "af00ea8f2022b6287dc375b2c70f31ab5af83989fc6fe9eacd4976ce26cd7ccc";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pyasn1 ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A collection of ASN.1-based protocols modules";
|
|
homepage = https://pypi.python.org/pypi/pyasn1-modules;
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix; # same as pyasn1
|
|
};
|
|
}
|