1{
2 buildPythonPackage,
3 lib,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "xstatic-asciinema-player";
9 version = "2.6.1.1";
10
11 src = fetchPypi {
12 pname = "XStatic-asciinema-player";
13 inherit version;
14 sha256 = "sha256-yA6WC067St82Dm6StaCKdWrRBhmNemswetIO8iodfcw=";
15 };
16
17 # no tests implemented
18 doCheck = false;
19
20 meta = with lib; {
21 homepage = "https://github.com/python-xstatic/asciinema-player";
22 description = "Asciinema-player packaged for python";
23 license = licenses.asl20;
24 maintainers = with maintainers; [ aither64 ];
25 };
26}