depot/third_party/nixpkgs/pkgs/development/python-modules/pyinstaller-versionfile/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

36 lines
721 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";
mainProgram = "create-version-file";
homepage = "https://pypi.org/project/pyinstaller-versionfile/";
license = lib.licenses.mit;
maintainers = [ ];
};
}