bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
36 lines
828 B
Nix
36 lines
828 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 = "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 ];
|
|
};
|
|
}
|