summary refs log blame commit diff
path: root/pkgs/servers/pinnwand/steck.nix
blob: 52efdc148abb46d2de65d91ae9035f5dd1249824 (plain) (tree)
1
2
3
4
5
6
7
8
9




                 


                                            
                    


                                   
                                                                    

    




                                         









                                                 


                                 

                                       


                                                   
                                                 



                                             
{ lib
, pkgs
, python3Packages
, nixosTests
}:

python3Packages.buildPythonApplication rec {
  pname = "steck";
  version = "0.7.0";

  src = python3Packages.fetchPypi {
    inherit pname version;
    sha256 = "1a3l427ibwck9zzzy1sp10hmjgminya08i4r9j4559qzy7lxghs1";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace 'click>=7.0,<8.0' 'click'
  '';

  propagatedBuildInputs = with python3Packages; [
    pkgs.git
    appdirs
    click
    python_magic
    requests
    termcolor
    toml
  ];

  # tests are not in pypi package
  doCheck = false;

  passthru.tests = nixosTests.pinnwand;

  meta = with lib; {
    homepage = "https://github.com/supakeen/steck";
    license = licenses.mit;
    description = "Client for pinnwand pastebin";
    maintainers = with maintainers; [ hexa ];
  };
}