ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
24 lines
599 B
Nix
24 lines
599 B
Nix
{ lib, python3Packages, fetchPypi }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "dotfiles";
|
|
version = "0.6.4";
|
|
|
|
src = fetchPypi {
|
|
inherit version pname;
|
|
sha256 = "03qis6m9r2qh00sqbgwsm883s4bj1ibwpgk86yh4l235mdw8jywv";
|
|
};
|
|
|
|
# No tests in archive
|
|
doCheck = false;
|
|
|
|
nativeCheckInputs = with python3Packages; [ pytest ];
|
|
propagatedBuildInputs = with python3Packages; [ click ];
|
|
|
|
meta = with lib; {
|
|
description = "Easily manage your dotfiles";
|
|
mainProgram = "dotfiles";
|
|
homepage = "https://github.com/jbernard/dotfiles";
|
|
license = licenses.isc;
|
|
};
|
|
}
|