tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.quantile-python: init at 1.1
Maksym Balatsko
2 years ago
175db3dc
01853f5f
+29
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
quantile-python
default.nix
top-level
python-packages.nix
+27
pkgs/development/python-modules/quantile-python/default.nix
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, fetchPypi
4
4
+
}:
5
5
+
6
6
+
buildPythonPackage rec {
7
7
+
pname = "quantile-python";
8
8
+
version = "1.1";
9
9
+
format = "setuptools";
10
10
+
11
11
+
src = fetchPypi {
12
12
+
inherit pname version;
13
13
+
hash = "sha256-VYYp6IxJfvO5sQgTScGuamG1NZDjF3JCmP9UxnTbeWk=";
14
14
+
};
15
15
+
16
16
+
# package has no tests
17
17
+
doCheck = false;
18
18
+
19
19
+
pythonImportsCheck = [ "quantile" ];
20
20
+
21
21
+
meta = with lib; {
22
22
+
description = "Python Implementation of Graham Cormode and S. Muthukrishnan's Effective Computation of Biased Quantiles over Data Streams in ICDE'05";
23
23
+
homepage = "https://github.com/matttproud/python_quantile_estimation";
24
24
+
license = licenses.asl20;
25
25
+
maintainers = with maintainers; [ mbalatsko ];
26
26
+
};
27
27
+
}
+2
pkgs/top-level/python-packages.nix
···
11100
11100
11101
11101
quantiphy = callPackage ../development/python-modules/quantiphy { };
11102
11102
11103
11103
+
quantile-python = callPackage ../development/python-modules/quantile-python { };
11104
11104
+
11103
11105
quantiphy-eval = callPackage ../development/python-modules/quantiphy-eval { };
11104
11106
11105
11107
quantum-gateway = callPackage ../development/python-modules/quantum-gateway { };