506f86186c
* python37Packages.livereload: 2.6.0 -> 2.6.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-livereload/versions * python.pkgs.livereload: fix v2.6.1 build But the newly added test 'test_watch_multiple_dirs' is failing consistently
35 lines
732 B
Nix
35 lines
732 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, nose
|
|
, django
|
|
, tornado
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "livereload";
|
|
version = "2.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lepture";
|
|
repo = "python-livereload";
|
|
rev = "v${version}";
|
|
sha256 = "15v2a0af897ijnsfjh2r8f7l5zi5i2jdm6z0xzlyyvp9pxd6mpfm";
|
|
};
|
|
|
|
buildInputs = [ django ];
|
|
|
|
propagatedBuildInputs = [ tornado six ];
|
|
|
|
checkInputs = [ nose ];
|
|
# TODO: retry running all tests after v2.6.1
|
|
checkPhase = "NOSE_EXCLUDE=test_watch_multiple_dirs nosetests -s";
|
|
|
|
meta = {
|
|
description = "Runs a local server that reloads as you develop";
|
|
homepage = "https://github.com/lepture/python-livereload";
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
}
|