summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyemd/default.nix
blob: 4e7594fbab5b7ffa92e66c0ca9baa4d2e746576f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, 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 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 ];
  };
}