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`.
37 lines
747 B
Nix
37 lines
747 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
, isPyPy
|
|
, bash
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "subprocess32";
|
|
version = "3.5.2";
|
|
disabled = isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "eb2b989cf03ffc7166339eb34f1aa26c5ace255243337b1e22dab7caa1166687";
|
|
};
|
|
|
|
buildInputs = [ bash ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace test_subprocess32.py \
|
|
--replace '/usr/' '${bash}/'
|
|
'';
|
|
|
|
doCheck = !isPyPy;
|
|
checkPhase = ''
|
|
${python.interpreter} test_subprocess32.py
|
|
'';
|
|
|
|
meta = {
|
|
homepage = https://pypi.python.org/pypi/subprocess32;
|
|
description = "Backport of the subprocess module from Python 3.2.5 for use on 2.x";
|
|
maintainers = with lib.maintainers; [ garbas ];
|
|
};
|
|
} |