nixpkgs/pkgs/development/python-modules/telepath/default.nix
2024-02-23 09:12:34 +01:00

36 lines
823 B
Nix

{ buildPythonPackage
, django
, fetchFromGitHub
, lib
, python
}:
buildPythonPackage rec {
pname = "telepath";
version = "0.3.1";
format = "setuptools";
src = fetchFromGitHub {
repo = "telepath";
owner = "wagtail";
rev = "v${version}";
hash = "sha256-MS4Q41WVSrjFmFjv4fztyf0U2+5WkNU79aPEKv/CeUQ=";
};
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 ];
};
}