Loading pkgs/development/python-modules/telepath/default.nix 0 → 100644 +34 −0 Original line number Diff line number Diff line { buildPythonPackage , django , fetchFromGitHub , lib , python }: buildPythonPackage rec { pname = "telepath"; version = "0.3"; src = fetchFromGitHub { repo = "telepath"; owner = "wagtail"; rev = "v${version}"; sha256 = "sha256-kfEAYCXbK0HTf1Gut/APkpw2krMa6C6mU/dJ0dsqzS0="; }; checkInputs = [ django ]; checkPhase = '' ${python.interpreter} -m django test --settings=telepath.test_settings ''; pythonImportsCheck = [ "telepath" ]; meta = with lib; { description = "A library for exchanging data between Python and JavaScript"; homepage = "https://github.com/wagtail/telepath"; changelog = "https://github.com/wagtail/telepath/blob/v${version}/CHANGELOG.md"; license = licenses.bsd3; maintainers = with maintainers; [ sephi ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11475,6 +11475,8 @@ self: super: with self; { telegraph = callPackage ../development/python-modules/telegraph { }; telepath = callPackage ../development/python-modules/telepath { }; telethon = callPackage ../development/python-modules/telethon { inherit (pkgs) openssl; }; Loading Loading
pkgs/development/python-modules/telepath/default.nix 0 → 100644 +34 −0 Original line number Diff line number Diff line { buildPythonPackage , django , fetchFromGitHub , lib , python }: buildPythonPackage rec { pname = "telepath"; version = "0.3"; src = fetchFromGitHub { repo = "telepath"; owner = "wagtail"; rev = "v${version}"; sha256 = "sha256-kfEAYCXbK0HTf1Gut/APkpw2krMa6C6mU/dJ0dsqzS0="; }; checkInputs = [ django ]; checkPhase = '' ${python.interpreter} -m django test --settings=telepath.test_settings ''; pythonImportsCheck = [ "telepath" ]; meta = with lib; { description = "A library for exchanging data between Python and JavaScript"; homepage = "https://github.com/wagtail/telepath"; changelog = "https://github.com/wagtail/telepath/blob/v${version}/CHANGELOG.md"; license = licenses.bsd3; maintainers = with maintainers; [ sephi ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11475,6 +11475,8 @@ self: super: with self; { telegraph = callPackage ../development/python-modules/telegraph { }; telepath = callPackage ../development/python-modules/telepath { }; telethon = callPackage ../development/python-modules/telethon { inherit (pkgs) openssl; }; Loading