evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / xstatic-asciinema-player / default.nix
blob4427858a8157fef8f163ed86e8470bf902292261
2   buildPythonPackage,
3   lib,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "xstatic-asciinema-player";
9   version = "2.6.1.1";
11   src = fetchPypi {
12     pname = "XStatic-asciinema-player";
13     inherit version;
14     hash = "sha256-yA6WC067St82Dm6StaCKdWrRBhmNemswetIO8iodfcw=";
15   };
17   # no tests implemented
18   doCheck = false;
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   };