Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / django-mdeditor / default.nix
blobdc58e3cd665d027215fa07b5bc2c4aa975129514
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , django
5 }:
6 let
7   version = "0.1.20";
8 in
9 buildPythonPackage {
10   pname = "django-mdeditor";
11   inherit version;
13   src = fetchFromGitHub {
14     owner = "pylixm";
15     repo = "django-mdeditor";
16     rev = "v${version}";
17     hash = "sha256-t57j1HhjNQtBwlbqe4mAHQ9WiNcIhMKYmrZkiqh+k5k=";
18   };
20   propagatedBuildInputs = [ django ];
22   # no tests
23   doCheck = false;
24   pythonImportsCheck = [ "mdeditor" ];
26   meta = with lib; {
27     description = "Markdown Editor plugin application for django based on Editor.md";
28     homepage = "https://github.com/pylixm/django-mdeditor";
29     changelog = "https://github.com/pylixm/django-mdeditor/releases";
30     license = licenses.gpl3;
31     maintainers = with maintainers; [ augustebaum ];
32   };