diff --git a/pkgs/development/python-modules/rtoml/default.nix b/pkgs/development/python-modules/rtoml/default.nix index 9ff43bce0843..2d2aef6f7226 100644 --- a/pkgs/development/python-modules/rtoml/default.nix +++ b/pkgs/development/python-modules/rtoml/default.nix @@ -1,16 +1,17 @@ { lib , buildPythonPackage , fetchFromGitHub -, pythonOlder -, setuptools-rust -, rustPlatform -, pytestCheckHook , libiconv +, pytestCheckHook +, pythonOlder +, rustPlatform +, setuptools-rust }: buildPythonPackage rec { pname = "rtoml"; version = "0.7"; + disabled = pythonOlder "3.7"; src = fetchFromGitHub { @@ -33,17 +34,29 @@ buildPythonPackage rec { cargoSetupHook ]; - buildInputs = [ libiconv ]; + buildInputs = [ + libiconv + ]; - pythonImportsCheck = [ "rtoml" ]; + pythonImportsCheck = [ + "rtoml" + ]; + + checkInputs = [ + pytestCheckHook + ]; - checkInputs = [ pytestCheckHook ]; preCheck = '' cd tests ''; + pytestFlagsArray = [ + "-W" + "ignore::DeprecationWarning" + ]; + meta = with lib; { - description = "Rust based TOML library for python"; + description = "Rust based TOML library for Python"; homepage = "https://github.com/samuelcolvin/rtoml"; license = licenses.mit; maintainers = with maintainers; [ evils ];