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`.
24 lines
474 B
Nix
24 lines
474 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, unittest2
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "contextlib2";
|
|
version = "0.5.5";
|
|
|
|
src = fetchPypi rec {
|
|
inherit pname version;
|
|
sha256 = "509f9419ee91cdd00ba34443217d5ca51f5a364a404e1dce9e8979cea969ca48";
|
|
};
|
|
|
|
checkInputs = [ unittest2 ];
|
|
|
|
meta = {
|
|
description = "Backports and enhancements for the contextlib module";
|
|
homepage = http://contextlib2.readthedocs.org/;
|
|
license = lib.licenses.psfl;
|
|
};
|
|
}
|