1{ lib
2, fetchFromGitHub
3, buildPythonPackage
4, packaging
5, jinja2
6, pyyaml
7}:
8
9buildPythonPackage rec {
10 pname = "pyinstaller-versionfile";
11 version = "2.1.1";
12
13 format = "setuptools";
14
15 src = fetchFromGitHub {
16 owner = "DudeNr33";
17 repo = pname;
18 rev = "v${version}";
19 hash = "sha256-lz1GuiXU+r8sMld5SsG3qS+FOsWfbvkQmO2bxAR3XcY=";
20 };
21
22 propagatedBuildInputs = [ packaging jinja2 pyyaml ];
23
24 meta = {
25 description = "Create a windows version-file from a simple YAML file that can be used by PyInstaller.";
26 homepage = "https://pypi.org/project/pyinstaller-versionfile/";
27 license = lib.licenses.mit;
28 maintainers = with lib.maintainers; [ ];
29 };
30}