pythonPackages.dotfiles: 0.6.3 -> 0.6.4
This commit is contained in:
parent
76437e5e5a
commit
d6cebc8b39
24
pkgs/applications/misc/dotfiles/default.nix
Normal file
24
pkgs/applications/misc/dotfiles/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -105,6 +105,8 @@ with pkgs;
|
|||||||
|
|
||||||
docker_compose = pythonPackages.docker_compose;
|
docker_compose = pythonPackages.docker_compose;
|
||||||
|
|
||||||
|
dotfiles = callPackage ../applications/misc/dotfiles { };
|
||||||
|
|
||||||
dotnetenv = callPackage ../build-support/dotnetenv {
|
dotnetenv = callPackage ../build-support/dotnetenv {
|
||||||
dotnetfx = dotnetfx40;
|
dotnetfx = dotnetfx40;
|
||||||
};
|
};
|
||||||
|
@ -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 {
|
dopy = buildPythonPackage rec {
|
||||||
version = "2016-01-04";
|
version = "2016-01-04";
|
||||||
name = "dopy-${version}";
|
name = "dopy-${version}";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user