biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / servers / pinnwand / steck.nix
blob32e2141d2a9d63f2a08ddaa4810413186edfa89b
1 { lib
2 , pkgs
3 , python3Packages
4 , fetchPypi
5 , nixosTests
6 }:
8 python3Packages.buildPythonApplication rec {
9   pname = "steck";
10   version = "0.7.0";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "1a3l427ibwck9zzzy1sp10hmjgminya08i4r9j4559qzy7lxghs1";
15   };
17   postPatch = ''
18     cat setup.py
19     substituteInPlace setup.py \
20       --replace 'click>=7.0,<8.0' 'click' \
21       --replace 'termcolor>=1.1.0,<2.0.0' 'termcolor'
22   '';
24   nativeBuildInputs = with python3Packages; [
25     setuptools
26   ];
28   propagatedBuildInputs = with python3Packages; [
29     pkgs.git
30     appdirs
31     click
32     python-magic
33     requests
34     termcolor
35     toml
36   ];
38   # tests are not in pypi package
39   doCheck = false;
41   passthru.tests = nixosTests.pinnwand;
43   meta = with lib; {
44     homepage = "https://github.com/supakeen/steck";
45     license = licenses.mit;
46     description = "Client for pinnwand pastebin";
47     mainProgram = "steck";
48     maintainers = with maintainers; [ hexa ];
49   };