diff options
| author | Maksym Balatsko <maksym.balatsko-ext@arista.com> | 2023-09-29 05:05:55 -0700 |
|---|---|---|
| committer | Maksym Balatsko <maksym.balatsko-ext@arista.com> | 2023-09-30 09:27:52 -0700 |
| commit | 175db3dcf32dc92566f56a805c87d2e7ada72cb3 (patch) | |
| tree | 19490e74b34048f2d76c40bcca3ff528b4d739a6 | |
| parent | fs-uae-launcher: allow side loading of fs-uae-device-helper to fix the detect... (diff) | |
| download | nixpkgs-175db3dcf32dc92566f56a805c87d2e7ada72cb3.tar.gz | |
python3Packages.quantile-python: init at 1.1
| -rw-r--r-- | pkgs/development/python-modules/quantile-python/default.nix | 27 | ||||
| -rw-r--r-- | pkgs/top-level/python-packages.nix | 2 |
2 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/quantile-python/default.nix b/pkgs/development/python-modules/quantile-python/default.nix new file mode 100644 index 000000000000..98206ff8aaba --- /dev/null +++ b/pkgs/development/python-modules/quantile-python/default.nix @@ -0,0 +1,27 @@ +{ 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 ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cf7d72b5347d..1ee132f7eaf5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -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 { }; |
