summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/xstatic-asciinema-player/default.nix
blob: fc28f23bcdd9bb6fbb51793436b0d35d404a5afb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  buildPythonPackage,
  lib,
  fetchPypi,
}:

buildPythonPackage rec {
  pname = "xstatic-asciinema-player";
  version = "2.6.1.1";
  format = "setuptools";

  src = fetchPypi {
    pname = "XStatic-asciinema-player";
    inherit version;
    hash = "sha256-yA6WC067St82Dm6StaCKdWrRBhmNemswetIO8iodfcw=";
  };

  # no tests implemented
  doCheck = false;

  meta = {
    homepage = "https://github.com/python-xstatic/asciinema-player";
    description = "Asciinema-player packaged for python";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ aither64 ];
  };
}