python-launcher: init at 1.0.0
This commit is contained in:
parent
ebdafd7244
commit
4a8aa91be6
28
pkgs/development/tools/misc/python-launcher/default.nix
Normal file
28
pkgs/development/tools/misc/python-launcher/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib, rustPlatform, fetchFromGitHub, python3 }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "python-launcher";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "brettcannon";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1r2pmli4jsdjag9zsgd9q1qlj3hxxjj2bni6yybjh1a10fcqxzzv";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-2lgWybEPi6HEUMYuGDRWMjWoc94CrFHPP5IeKUjj0q4=";
|
||||
|
||||
checkInputs = [ python3 ];
|
||||
|
||||
dontUseCargoParallelTests = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "An implementation of the `py` command for Unix-based platforms";
|
||||
homepage = "https://github.com/brettcannon/python-launcher";
|
||||
changelog = "https://github.com/brettcannon/python-launcher/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
mainProgram = "py";
|
||||
};
|
||||
}
|
@ -10725,6 +10725,8 @@ with pkgs;
|
||||
|
||||
pydeps = with python3Packages; toPythonApplication pydeps;
|
||||
|
||||
python-launcher = callPackage ../development/tools/misc/python-launcher { };
|
||||
|
||||
pytrainer = callPackage ../applications/misc/pytrainer { };
|
||||
|
||||
pywal = with python3Packages; toPythonApplication pywal;
|
||||
|
Loading…
Reference in New Issue
Block a user