mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 00:27:37 +00:00
steck: init at 0.6.0
This commit is contained in:
parent
8774b9090d
commit
607a94ce2f
29
pkgs/servers/pinnwand/steck.nix
Normal file
29
pkgs/servers/pinnwand/steck.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ lib, pkgs, python3Packages, nixosTests }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "steck";
|
||||
version = "0.6.0";
|
||||
|
||||
src = python3Packages.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "07gc5iwbyprb8nihnjjl2zd06z8p4nl3a3drzh9a8ny35ig1khq0";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
pkgs.git
|
||||
appdirs
|
||||
click
|
||||
python_magic
|
||||
requests
|
||||
termcolor
|
||||
toml
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/supakeen/steck";
|
||||
license = licenses.mit;
|
||||
description = "Client for pinnwand pastebin.";
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
}
|
||||
|
@ -6893,6 +6893,8 @@ in
|
||||
|
||||
stdman = callPackage ../data/documentation/stdman { };
|
||||
|
||||
steck = callPackage ../servers/pinnwand/steck.nix { };
|
||||
|
||||
stenc = callPackage ../tools/backup/stenc { };
|
||||
|
||||
stm32loader = with python3Packages; toPythonApplication stm32loader;
|
||||
|
Loading…
Reference in New Issue
Block a user