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.
28 lines
722 B
Nix
28 lines
722 B
Nix
{ lib, python3Packages, fetchPypi }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "konsave";
|
|
version = "2.2.0";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "Konsave";
|
|
hash = "sha256-tWarqT2jFgCuSsa2NwMHRaR3/wj0khiRHidvRNMwM8M=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3Packages; [ setuptools-scm ];
|
|
propagatedBuildInputs = with python3Packages; [ pyyaml setuptools ];
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Save Linux Customization";
|
|
mainProgram = "konsave";
|
|
maintainers = with maintainers; [ MoritzBoehme ];
|
|
homepage = "https://github.com/Prayag2/konsave";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|