Loading pkgs/development/python-modules/freesms/default.nix 0 → 100644 +44 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, poetry-core, pytestCheckHook, pythonOlder, requests, httmock, }: buildPythonPackage rec { pname = "freesms"; version = "0.3.0"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "bfontaine"; repo = "freesms"; tag = "v${version}"; hash = "sha256-5f5amXH6VVppX9/9DhILdBU8w/6n67EUgBy/zgTEUCM="; }; build-system = [ poetry-core ]; dependencies = [ requests ]; nativeCheckInputs = [ pytestCheckHook httmock ]; pythonImportsCheck = [ "freesms" ]; meta = { description = "Python interface for Free Mobile SMS API"; homepage = "https://github.com/bfontaine/freesms"; changelog = "https://github.com/bfontaine/freesms/releases/tag/v${version}"; license = lib.licenses.mit; maintainers = [ lib.maintainers.jamiemagee ]; }; } pkgs/servers/home-assistant/component-packages.nix +2 −1 Original line number Diff line number Diff line Loading @@ -1848,7 +1848,8 @@ ]; "free_mobile" = ps: with ps; [ ]; # missing inputs: freesms freesms ]; "freebox" = ps: with ps; [ freebox-api Loading pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -5461,6 +5461,8 @@ self: super: with self; { freesasa = callPackage ../development/python-modules/freesasa { inherit (pkgs) freesasa; }; freesms = callPackage ../development/python-modules/freesms { }; freetype-py = callPackage ../development/python-modules/freetype-py { }; freezegun = callPackage ../development/python-modules/freezegun { }; Loading Loading
pkgs/development/python-modules/freesms/default.nix 0 → 100644 +44 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, poetry-core, pytestCheckHook, pythonOlder, requests, httmock, }: buildPythonPackage rec { pname = "freesms"; version = "0.3.0"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "bfontaine"; repo = "freesms"; tag = "v${version}"; hash = "sha256-5f5amXH6VVppX9/9DhILdBU8w/6n67EUgBy/zgTEUCM="; }; build-system = [ poetry-core ]; dependencies = [ requests ]; nativeCheckInputs = [ pytestCheckHook httmock ]; pythonImportsCheck = [ "freesms" ]; meta = { description = "Python interface for Free Mobile SMS API"; homepage = "https://github.com/bfontaine/freesms"; changelog = "https://github.com/bfontaine/freesms/releases/tag/v${version}"; license = lib.licenses.mit; maintainers = [ lib.maintainers.jamiemagee ]; }; }
pkgs/servers/home-assistant/component-packages.nix +2 −1 Original line number Diff line number Diff line Loading @@ -1848,7 +1848,8 @@ ]; "free_mobile" = ps: with ps; [ ]; # missing inputs: freesms freesms ]; "freebox" = ps: with ps; [ freebox-api Loading
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -5461,6 +5461,8 @@ self: super: with self; { freesasa = callPackage ../development/python-modules/freesasa { inherit (pkgs) freesasa; }; freesms = callPackage ../development/python-modules/freesms { }; freetype-py = callPackage ../development/python-modules/freetype-py { }; freezegun = callPackage ../development/python-modules/freezegun { }; Loading