mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
python3Packages.pyinstaller-versionfile: init at 2.1.1
This commit is contained in:
parent
a520ba04c4
commit
02c688f182
@ -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; [ ];
|
||||||
|
};
|
||||||
|
}
|
@ -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 { };
|
||||||
|
Loading…
Reference in New Issue
Block a user