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
493 B
Nix
22 lines
493 B
Nix
{ lib, fetchPypi, buildPythonPackage, numpy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "plyfile";
|
|
version = "0.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1cspvhfy2nw1rfwpvrd69wkz0b6clr4wzqpwpmdk872vk2q89yzi";
|
|
};
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
meta = with lib; {
|
|
description = "NumPy-based text/binary PLY file reader/writer for Python";
|
|
homepage = https://github.com/dranjan/python-plyfile;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
|
|
}
|