aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/python-frontmatter/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/python-modules/python-frontmatter/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/python-modules/python-frontmatter/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/python-modules/python-frontmatter/default.nix b/infra/libkookie/nixpkgs/pkgs/development/python-modules/python-frontmatter/default.nix
new file mode 100644
index 000000000000..8edd87556675
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/development/python-modules/python-frontmatter/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, lib, fetchFromGitHub, python3Packages }:
+
+python3Packages.buildPythonPackage rec {
+ pname = "python-frontmatter";
+ version = "0.5.0";
+
+ src = fetchFromGitHub {
+ owner = "eyeseast";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1iki3rcbg7zs93m3mgqzncybqgdcch25qpwy84iz96qq8pipfs6g";
+ };
+
+ propagatedBuildInputs = with python3Packages; [
+ pyyaml
+ six
+ ];
+
+ checkInputs = with python3Packages; [
+ pytest
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = "https://github.com/eyeseast/python-frontmatter";
+ description = "Parse and manage posts with YAML (or other) frontmatter";
+ license = licenses.mit;
+ maintainers = with maintainers; [ siraben ];
+ platforms = lib.platforms.unix;
+ };
+}