evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / se / seashells / package.nix
blobc928bca8cefbddf1b72b561f8f166db627f2d31c
1 { lib, python3Packages, fetchPypi }:
3 python3Packages.buildPythonApplication rec {
4   pname = "seashells";
5   version = "0.1.2";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     hash = "sha256-RBs28FC7f82DrxRcmvTP9nljVpm7tjrGuvr05l32hDM=";
11   };
13   doCheck = false; # there are no tests
14   pythonImportsCheck = [ "seashells" ];
16   meta = with lib; {
17     homepage = "https://seashells.io/";
18     description = "Pipe command-line programs to seashells.io";
19     mainProgram = "seashells";
20     longDescription = ''
21       Official cient for seashells.io, which allows you to view
22       command-line output on the web, in real-time.
23     '';
24     license = licenses.mit;
25     maintainers = with maintainers; [ deejayem ];
26   };