fix evaluation
This commit is contained in:
parent
b3e6bdbae5
commit
1a5cdaf85a
|
@ -4,14 +4,14 @@ with lib;
|
||||||
let
|
let
|
||||||
pythonPackages = python2Packages;
|
pythonPackages = python2Packages;
|
||||||
|
|
||||||
docker_1_7_2 = pythonPackages.docker.override rec {
|
docker_1_7_2 = pythonPackages.docker.overrideAttrs (oldAttrs: rec {
|
||||||
name = "docker-py-1.7.2";
|
name = "docker-py-1.7.2";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "mirror://pypi/d/docker-py/${name}.tar.gz";
|
url = "mirror://pypi/d/docker-py/${name}.tar.gz";
|
||||||
sha256 = "0k6hm3vmqh1d3wr9rryyif5n4rzvcffdlb1k4jvzp7g4996d3ccm";
|
sha256 = "0k6hm3vmqh1d3wr9rryyif5n4rzvcffdlb1k4jvzp7g4996d3ccm";
|
||||||
};
|
};
|
||||||
};
|
});
|
||||||
|
|
||||||
webpy-custom = pythonPackages.web.override {
|
webpy-custom = pythonPackages.web.override {
|
||||||
name = "web.py-INGI";
|
name = "web.py-INGI";
|
||||||
|
|
|
@ -25431,7 +25431,7 @@ in {
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Test utilities for code working with files and commands";
|
description = "Test utilities for code working with files and commands";
|
||||||
license = with lib.licenses; [ mit ];
|
license = licenses.mit;
|
||||||
homepage = https://github.com/jupyter/testpath;
|
homepage = https://github.com/jupyter/testpath;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue