feed2maildir: 354f93490c005ff6d4969128e549875e8921a6e7

     1: { nixpkgs ? import (fetchTarball {
     2:   name = "nixpkgs2305";
     3:   url = "https://github.com/NixOS/nixpkgs/archive/23.05.tar.gz";
     4:   sha256 = "10wn0l08j9lgqcw8177nh2ljrnxdrpri7bp0g7nvrsn9rkawvlbf";
     5: }) {
     6:   config = { };
     7:   overlays = [ ];
     8: }, python3Packages ? nixpkgs.python3Packages }:
     9: with {
    10:   pkg = { buildPythonPackage, dateutil, feedparser, python }:
    11:     buildPythonPackage {
    12:       name = "feed2maildirsimple";
    13:       version = "0.4.0";
    14:       src = ./.;
    15:       propagatedBuildInputs = [ python dateutil feedparser ];
    16:     };
    17: };
    18: python3Packages.callPackage pkg { }

Generated by git2html.