1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "quantile-python";
8 version = "1.1";
9 format = "setuptools";
10
11 src = fetchPypi {
12 inherit pname version;
13 hash = "sha256-VYYp6IxJfvO5sQgTScGuamG1NZDjF3JCmP9UxnTbeWk=";
14 };
15
16 # package has no tests
17 doCheck = false;
18
19 pythonImportsCheck = [ "quantile" ];
20
21 meta = with lib; {
22 description = "Python Implementation of Graham Cormode and S. Muthukrishnan's Effective Computation of Biased Quantiles over Data Streams in ICDE'05";
23 homepage = "https://github.com/matttproud/python_quantile_estimation";
24 license = licenses.asl20;
25 maintainers = with maintainers; [ mbalatsko ];
26 };
27}