steck: init at 0.6.0

This commit is contained in:
Martin Weinelt 2020-06-03 21:14:53 +02:00
parent 8774b9090d
commit 607a94ce2f
No known key found for this signature in database
GPG key ID: BD4AA0528F63F17E
2 changed files with 31 additions and 0 deletions

View 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 ];
};
}

View file

@ -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;