peru: 1.0.1 -> 1.1.0

This commit is contained in:
ndowens 2017-03-09 21:06:40 -06:00 committed by Vincent Laporte
parent 1d948ddc01
commit 586cd21796

View File

@ -1,25 +1,26 @@
{ stdenv, fetchurl, python3Packages }: { stdenv, fetchFromGitHub, python3Packages }:
let
pythonPackages = python3Packages;
in pythonPackages.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
name = "peru-${version}"; name = "peru-${version}";
version = "1.0.1"; version = "1.1.0";
src = fetchurl { src = fetchFromGitHub {
url = "mirror://pypi/p/peru/${name}.tar.gz"; owner = "buildinspace";
sha256 = "d51771d4aa7e16119e46c39efd71b0a1a898607bf3fb7735fc688a64fc59cbf1"; repo = "peru";
rev = "${version}";
sha256 = "0hvp6pvpsz0f98az4f1wl93gqlz6wj24pjnc5zs1har9rqlpq8y8";
}; };
propagatedBuildInputs = with pythonPackages; [ pyyaml docopt ]; propagatedBuildInputs = with python3Packages; [ pyyaml docopt ];
# No tests in archive # No tests in archive
doCheck = false; doCheck = false;
meta = { meta = with stdenv.lib; {
homepage = https://github.com/buildinspace/peru; homepage = https://github.com/buildinspace/peru;
description = "A tool for including other people's code in your projects"; description = "A tool for including other people's code in your projects";
license = stdenv.lib.licenses.mit; license = licenses.mit;
platforms = platforms.unix;
}; };
}
}