mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
Merge pull request #17807 from KibaFox/asciinema
pythonPackages.asciinema: init at 1.3.0
This commit is contained in:
commit
e8f7c5490d
@ -1167,6 +1167,33 @@ in modules // {
|
||||
};
|
||||
});
|
||||
|
||||
asciinema = buildPythonPackage rec {
|
||||
name = "asciinema-${version}";
|
||||
version = "1.3.0";
|
||||
|
||||
disabled = pythonOlder "3.3";
|
||||
|
||||
buildInputs = with self; [ nose ];
|
||||
propagatedBuildInputs = with self; [ requests2 ];
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "asciinema";
|
||||
repo = "asciinema";
|
||||
rev = "v${version}";
|
||||
sha256 = "1hx7xipyy9w72iwlawldlif9qk3f7b8jx8c1wcx114pqbjz5d347";
|
||||
};
|
||||
|
||||
checkPhase = ''
|
||||
nosetests
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Terminal session recorder and the best companion of asciinema.org";
|
||||
homepage = https://asciinema.org/;
|
||||
license = with licenses; [ gpl3 ];
|
||||
};
|
||||
};
|
||||
|
||||
astroid = buildPythonPackage rec {
|
||||
name = "astroid-1.4.4";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user