Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions pkgs/applications/misc/wallgen/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{ lib, buildPythonApplication, fetchFromGitHub, pillow, click, cython, scipy, flask, gevent, numpy, scikitimage, loguru }:

buildPythonApplication rec {
pname = "wallgen";
version = "unstable-2021-02-21";

src = fetchFromGitHub {
owner = "SubhrajitPrusty";
repo = "wallgen";
rev = "cf9cfbd35d6c54fc3679833784ebbdc85e3a5aea";
sha256 = "sha256-OdJiecevw2rSzotcmARil/YQZgHoBrtPBKjrDv4e1qE=";
};

propagatedBuildInputs = [
pillow
click
cython
scipy
flask
gevent
numpy
scikitimage
loguru
];

meta = with lib; {
maintainers = with maintainers; [ j0hax ];
description = "Generate HQ poly wallpapers";
homepage = "https://github.com/SubhrajitPrusty/wallgen";
license = licenses.mit;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30623,6 +30623,8 @@ in

wacomtablet = libsForQt5.callPackage ../tools/misc/wacomtablet { };

wallgen = python3Packages.callPackage ../applications/misc/wallgen { };

wasmer = callPackage ../development/interpreters/wasmer { };

yabasic = callPackage ../development/interpreters/yabasic { };
Expand Down