pythonPackages.intervaltree: fix evaluation

This commit is contained in:
Jörg Thalheim 2017-07-02 01:09:33 +01:00
parent d2d62e43a0
commit 5c45f341f1

View File

@ -30178,7 +30178,7 @@ EOF
description = "Unicorn CPU emulator engine"; description = "Unicorn CPU emulator engine";
homepage = "http://www.unicorn-engine.org/"; homepage = "http://www.unicorn-engine.org/";
license = [ licenses.gpl2 ]; license = [ licenses.gpl2 ];
maintainers = with stdenv.maintainers; [ bennofs ]; maintainers = [ maintainers.bennofs ];
}; };
}; };
@ -30202,8 +30202,8 @@ EOF
meta = with pkgs.stdenv.lib; { meta = with pkgs.stdenv.lib; {
description = "Editable interval tree data structure for Python 2 and 3"; description = "Editable interval tree data structure for Python 2 and 3";
homepage = https://github.com/chaimleib/intervaltree; homepage = https://github.com/chaimleib/intervaltree;
license = [ licenses.asl2 ]; license = [ licenses.asl20 ];
maintainers = with stdenv.maintainers; [ bennofs ]; maintainers = [ maintainers.bennofs ];
}; };
}; };