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