about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/xstatic-asciinema-player/default.nix
blob: 7651ce57c10d2d260ead34f9cc5baf6215aef276 (plain) (blame)
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
{ buildPythonPackage
, lib
, fetchPypi
}:

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

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

  # no tests implemented
  doCheck = false;

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