python3Packages.pyinstaller-versionfile: init at 2.1.1

This commit is contained in:
Vladyslav Burzakovskyy 2023-08-18 15:37:25 +02:00
parent a520ba04c4
commit 02c688f182
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib
, fetchFromGitHub
, buildPythonPackage
, packaging
, jinja2
, pyyaml
}:
buildPythonPackage rec {
pname = "pyinstaller-versionfile";
version = "2.1.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "DudeNr33";
repo = pname;
rev = "v${version}";
hash = "sha256-lz1GuiXU+r8sMld5SsG3qS+FOsWfbvkQmO2bxAR3XcY=";
};
propagatedBuildInputs = [ packaging jinja2 pyyaml ];
meta = {
description = "Create a windows version-file from a simple YAML file that can be used by PyInstaller.";
homepage = "https://pypi.org/project/pyinstaller-versionfile/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
};
}

View File

@ -8095,6 +8095,8 @@ self: super: with self; {
pyhumps = callPackage ../development/python-modules/pyhumps { }; pyhumps = callPackage ../development/python-modules/pyhumps { };
pyinstaller-versionfile = callPackage ../development/python-modules/pyinstaller-versionfile { };
pyisy = callPackage ../development/python-modules/pyisy { }; pyisy = callPackage ../development/python-modules/pyisy { };
pykrakenapi = callPackage ../development/python-modules/pykrakenapi { }; pykrakenapi = callPackage ../development/python-modules/pykrakenapi { };