nixpkgs/pkgs/development/python-modules/pyinstaller-versionfile/default.nix
2023-08-18 15:37:25 +02:00

31 lines
681 B
Nix

{ 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; [ ];
};
}