pythonPackages.dotfiles: 0.6.3 -> 0.6.4

This commit is contained in:
Tom Saeger 2017-09-06 23:14:03 -05:00 committed by Frederik Rietdijk
parent 76437e5e5a
commit d6cebc8b39
3 changed files with 26 additions and 17 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, pythonPackages }:
pythonPackages.buildPythonApplication rec {
pname = "dotfiles";
name = "${pname}-${version}";
version = "0.6.4";
src = pythonPackages.fetchPypi {
inherit version pname;
sha256 = "03qis6m9r2qh00sqbgwsm883s4bj1ibwpgk86yh4l235mdw8jywv";
};
# No tests in archive
doCheck = false;
checkInputs = with pythonPackages; [ pytest ];
propagatedBuildInputs = with pythonPackages; [ click ];
meta = with stdenv.lib; {
description = "Easily manage your dotfiles";
homepage = https://github.com/jbernard/dotfiles;
license = licenses.isc;
};
}

View File

@ -105,6 +105,8 @@ with pkgs;
docker_compose = pythonPackages.docker_compose;
dotfiles = callPackage ../applications/misc/dotfiles { };
dotnetenv = callPackage ../build-support/dotnetenv {
dotnetfx = dotnetfx40;
};

View File

@ -5121,23 +5121,6 @@ in {
};
};
dotfiles = buildPythonPackage rec {
name = "dotfiles-0.6.3";
src = pkgs.fetchurl {
url = "mirror://pypi/d/dotfiles/${name}.tar.gz";
sha256 = "45ecfd7f2ed9d0f2a7ac632c9bd0ebdca758d8bbc2b6f11562579d525f0467b8";
};
doCheck = true;
meta = {
description = "Easily manage your dotfiles";
homepage = https://github.com/jbernard/dotfiles;
license = licenses.isc;
};
};
dopy = buildPythonPackage rec {
version = "2016-01-04";
name = "dopy-${version}";