Loading pkgs/development/python-modules/quantile-python/default.nix 0 → 100644 +27 −0 Original line number Diff line number Diff line { 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 = with lib; { 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 = licenses.asl20; maintainers = with maintainers; [ mbalatsko ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11100,6 +11100,8 @@ self: super: with self; { quantiphy = callPackage ../development/python-modules/quantiphy { }; quantile-python = callPackage ../development/python-modules/quantile-python { }; quantiphy-eval = callPackage ../development/python-modules/quantiphy-eval { }; quantum-gateway = callPackage ../development/python-modules/quantum-gateway { }; Loading Loading
pkgs/development/python-modules/quantile-python/default.nix 0 → 100644 +27 −0 Original line number Diff line number Diff line { 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 = with lib; { 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 = licenses.asl20; maintainers = with maintainers; [ mbalatsko ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11100,6 +11100,8 @@ self: super: with self; { quantiphy = callPackage ../development/python-modules/quantiphy { }; quantile-python = callPackage ../development/python-modules/quantile-python { }; quantiphy-eval = callPackage ../development/python-modules/quantiphy-eval { }; quantum-gateway = callPackage ../development/python-modules/quantum-gateway { }; Loading