mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
fix evaluation
This commit is contained in:
parent
b3e6bdbae5
commit
1a5cdaf85a
|
@ -4,14 +4,14 @@ with lib;
|
|||
let
|
||||
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";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/d/docker-py/${name}.tar.gz";
|
||||
sha256 = "0k6hm3vmqh1d3wr9rryyif5n4rzvcffdlb1k4jvzp7g4996d3ccm";
|
||||
};
|
||||
};
|
||||
});
|
||||
|
||||
webpy-custom = pythonPackages.web.override {
|
||||
name = "web.py-INGI";
|
||||
|
|
|
@ -25431,7 +25431,7 @@ in {
|
|||
|
||||
meta = {
|
||||
description = "Test utilities for code working with files and commands";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = licenses.mit;
|
||||
homepage = https://github.com/jupyter/testpath;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue