piston-cli: init at 1.2.1
This commit is contained in:
parent
66e66b9d48
commit
1ddc68333b
|
@ -0,0 +1,24 @@
|
||||||
|
{ lib, python3Packages }:
|
||||||
|
|
||||||
|
python3Packages.buildPythonPackage rec {
|
||||||
|
pname = "piston-cli";
|
||||||
|
version = "1.2.1";
|
||||||
|
|
||||||
|
src = python3Packages.fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "bf0hhKb+6+07HhrkFrsWCnUQfsQWOdK/dPTlt9iZTno=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3Packages; [ rich prompt_toolkit requests pygments ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
$out/bin/piston --help > /dev/null
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Piston api tool";
|
||||||
|
homepage = "https://github.com/Shivansh-007/piston-cli";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ ethancedwards8 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -24337,6 +24337,8 @@ in
|
||||||
|
|
||||||
pistol = callPackage ../tools/misc/pistol { };
|
pistol = callPackage ../tools/misc/pistol { };
|
||||||
|
|
||||||
|
piston-cli = callPackage ../tools/misc/piston-cli { };
|
||||||
|
|
||||||
plater = libsForQt5.callPackage ../applications/misc/plater { };
|
plater = libsForQt5.callPackage ../applications/misc/plater { };
|
||||||
|
|
||||||
plexamp = callPackage ../applications/audio/plexamp { };
|
plexamp = callPackage ../applications/audio/plexamp { };
|
||||||
|
|
Loading…
Reference in New Issue