nixpkgs/pkgs/applications/misc/dotfiles/default.nix
Tom Saeger 043737b670 pythonPackages.dotfiles: 0.6.3 -> 0.6.4
(cherry picked from commit e1385f0a9461a1112c74f22f37ed3d56b5620770)
2017-09-08 22:07:05 +02:00

24 lines
603 B
Nix

{ 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;
};
}