summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/quantile-python/default.nix
blob: 90ba34f92d139b53edd01eb3aefa36d6bb9aba15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  lib,
  buildPythonPackage,
  fetchPypi,
}:

buildPythonPackage rec {
  pname = "quantile-python";
  version = "1.1";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-VYYp6IxJfvO5sQgTScGuamG1NZDjF3JCmP9UxnTbeWk=";
  };

  # package has no tests
  doCheck = false;

  pythonImportsCheck = [ "quantile" ];

  meta = {
    description = "Python Implementation of Graham Cormode and S. Muthukrishnan's Effective Computation of Biased Quantiles over Data Streams in ICDE'05";
    homepage = "https://github.com/matttproud/python_quantile_estimation";
    license = lib.licenses.asl20;
    maintainers = [ ];
  };
}