···5 /* Do not use "dev" as a version. If you do, Tilt will consider itself
6 running in development environment and try to serve assets from the
7 source tree, which is not there once build completes. */
8- version = "0.17.13";
910 src = fetchFromGitHub {
11 owner = "tilt-dev";
12 repo = pname;
13 rev = "v${version}";
14- sha256 = "sha256-x3U5OF8T3z9kHcYe7SwKVEKNiEsi8AEvA1rlOma4y+8=";
15 };
16 vendorSha256 = null;
17
···5 /* Do not use "dev" as a version. If you do, Tilt will consider itself
6 running in development environment and try to serve assets from the
7 source tree, which is not there once build completes. */
8+ version = "0.18.1";
910 src = fetchFromGitHub {
11 owner = "tilt-dev";
12 repo = pname;
13 rev = "v${version}";
14+ sha256 = "1sdb2x06va0j9cxdwz95dklv2csq0s596wjsjqi4sq65y9bxjr7i";
15 };
16 vendorSha256 = null;
17
···1314 buildInputs = [ setuptools_scm ];
15000016 meta = with stdenv.lib; {
17 description = "Provides a function install() which makes the mock module";
18 homepage = "https://github.com/jaraco/backports.unittest_mock";
19 license = licenses.mit;
020 };
21}
···1314 buildInputs = [ setuptools_scm ];
1516+ # does not contain tests
17+ doCheck = false;
18+ pythonImportsCheck = [ "backports.unittest_mock" ];
19+20 meta = with stdenv.lib; {
21 description = "Provides a function install() which makes the mock module";
22 homepage = "https://github.com/jaraco/backports.unittest_mock";
23 license = licenses.mit;
24+ maintainers = with maintainers; [ SuperSandro2000 ];
25 };
26}