Skip to content

Commit

Permalink
pythonPackages.dotfiles: 0.6.3 -> 0.6.4
Browse files Browse the repository at this point in the history
(cherry picked from commit e1385f0a9461a1112c74f22f37ed3d56b5620770)
  • Loading branch information
tsaeger authored and FRidh committed Sep 8, 2017
1 parent 065f9d7 commit 043737b
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 17 deletions.
24 changes: 24 additions & 0 deletions pkgs/applications/misc/dotfiles/default.nix
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -105,6 +105,8 @@ with pkgs;

docker_compose = pythonPackages.docker_compose;

dotfiles = callPackage ../applications/misc/dotfiles { };

dotnetenv = callPackage ../build-support/dotnetenv {
dotnetfx = dotnetfx40;
};
Expand Down
17 changes: 0 additions & 17 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -5115,23 +5115,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}";
Expand Down

1 comment on commit 043737b

@FRidh
Copy link
Member

@FRidh FRidh commented on 043737b Sep 8, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correct reference is d6cebc8.

Please sign in to comment.