lol

python3Packages.quantile-python: init at 1.1

+29
+27
pkgs/development/python-modules/quantile-python/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + }: 5 + 6 + buildPythonPackage 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 + }
+2
pkgs/top-level/python-packages.nix
··· 11100 11100 11101 11101 quantiphy = callPackage ../development/python-modules/quantiphy { }; 11102 11102 11103 + quantile-python = callPackage ../development/python-modules/quantile-python { }; 11104 + 11103 11105 quantiphy-eval = callPackage ../development/python-modules/quantiphy-eval { }; 11104 11106 11105 11107 quantum-gateway = callPackage ../development/python-modules/quantum-gateway { };