2019-10-24 02:20:38 +02:00
|
|
|
{ pkgs, fetchFromGitHub, ... }:
|
|
|
|
|
|
|
|
pkgs.python36.pkgs.buildPythonPackage rec {
|
|
|
|
|
|
|
|
name = "lektor-markdown-header-anchors";
|
|
|
|
|
|
|
|
version = "0.3.1";
|
|
|
|
|
2019-12-20 05:54:26 +01:00
|
|
|
src = fetchFromGitHub {
|
2019-10-24 02:20:38 +02:00
|
|
|
owner = "lektor";
|
|
|
|
repo = "lektor-markdown-header-anchors";
|
|
|
|
rev = "${version}";
|
|
|
|
sha256 = "0f82rngfqhb1jk6ilrlw74wi2maxfvvc36k2509scckyh77hqbqf";
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|