diff --git a/pkgs/development/python-modules/ripe-atlas-sagan/default.nix b/pkgs/development/python-modules/ripe-atlas-sagan/default.nix new file mode 100644 index 000000000000..3b3b16ce78e5 --- /dev/null +++ b/pkgs/development/python-modules/ripe-atlas-sagan/default.nix @@ -0,0 +1,61 @@ +{ lib +, buildPythonPackage +, cryptography +, fetchFromGitHub +, pytestCheckHook +, python-dateutil +, pythonOlder +, pytz +, ujson +}: + +buildPythonPackage rec { + pname = "ripe-atlas-sagan"; + version = "1.3.1"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; + + src = fetchFromGitHub { + owner = "RIPE-NCC"; + repo = pname; + rev = "v${version}"; + hash = "sha256-xIBIKsQvDmVBa/C8/7Wr3WKeepHaGhoXlgatXSUtWLA="; + }; + + propagatedBuildInputs = [ + cryptography + python-dateutil + pytz + ]; + + passthru.optional-dependencies = { + fast = [ + ujson + ]; + }; + + checkInputs = [ + pytestCheckHook + ]; + + pytestFlagsArray = [ + "tests/*.py" + ]; + + disabledTests = [ + # This test fail for unknown reason, I suspect it to be flaky. + "test_invalid_country_code" + ]; + + pythonImportsCheck = [ + "ripe.atlas.sagan" + ]; + + meta = with lib; { + description = "A parsing library for RIPE Atlas measurements results"; + homepage = "https://github.com/RIPE-NCC/ripe-atlas-sagan"; + license = licenses.gpl3Only; + maintainers = with maintainers; [ raitobezarius ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c623e8dff792..8c6d06e86b41 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9532,6 +9532,8 @@ in { ripe-atlas-cousteau = callPackage ../development/python-modules/ripe-atlas-cousteau { }; + ripe-atlas-sagan = callPackage ../development/python-modules/ripe-atlas-sagan { }; + riprova = callPackage ../development/python-modules/riprova { }; ripser = callPackage ../development/python-modules/ripser { };