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