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
600 B
Nix
22 lines
600 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, numpy, cython }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyemd";
|
|
version = "0.5.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "fc81c2116f8573e559dfbb8d73e03d9f73c22d0770559f406516984302e07e70";
|
|
};
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
buildInputs = [ cython ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A Python wrapper for Ofir Pele and Michael Werman's implementation of the Earth Mover's Distance";
|
|
homepage = https://github.com/wmayner/pyemd;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ rvl ];
|
|
};
|
|
}
|