Merge pull request #17807 from KibaFox/asciinema

pythonPackages.asciinema: init at 1.3.0

authored by Frederik Rietdijk and committed by GitHub e8f7c549 1cf9bcaa

+27
+27
pkgs/top-level/python-packages.nix
··· 1167 }; 1168 }); 1169 1170 astroid = buildPythonPackage rec { 1171 name = "astroid-1.4.4"; 1172
··· 1167 }; 1168 }); 1169 1170 + asciinema = buildPythonPackage rec { 1171 + name = "asciinema-${version}"; 1172 + version = "1.3.0"; 1173 + 1174 + disabled = pythonOlder "3.3"; 1175 + 1176 + buildInputs = with self; [ nose ]; 1177 + propagatedBuildInputs = with self; [ requests2 ]; 1178 + 1179 + src = pkgs.fetchFromGitHub { 1180 + owner = "asciinema"; 1181 + repo = "asciinema"; 1182 + rev = "v${version}"; 1183 + sha256 = "1hx7xipyy9w72iwlawldlif9qk3f7b8jx8c1wcx114pqbjz5d347"; 1184 + }; 1185 + 1186 + checkPhase = '' 1187 + nosetests 1188 + ''; 1189 + 1190 + meta = { 1191 + description = "Terminal session recorder and the best companion of asciinema.org"; 1192 + homepage = https://asciinema.org/; 1193 + license = with licenses; [ gpl3 ]; 1194 + }; 1195 + }; 1196 + 1197 astroid = buildPythonPackage rec { 1198 name = "astroid-1.4.4"; 1199