Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: df1e6ef90eaa
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 287af3bd5002
Choose a head ref
  • 1 commit
  • 2 files changed
  • 2 contributors

Commits on Jan 20, 2021

  1. snowmachine: init at 1.0.1 (#105895)

    Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
    djanatyn and SuperSandro2000 authored Jan 20, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    gaborbernat Bernát Gábor
    Copy the full SHA
    287af3b View commit details
Showing with 26 additions and 0 deletions.
  1. +24 −0 pkgs/applications/snowmachine/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
24 changes: 24 additions & 0 deletions pkgs/applications/snowmachine/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ buildPythonPackage, lib, click, colorama, fetchPypi, setuptools-git }:

buildPythonPackage rec {
pname = "snowmachine";
version = "1.0.1";

src = fetchPypi {
inherit pname version;
sha256 = "1v385hhxy2a8vx5p0fhn0di8l4qfpb0a86j6nwsg0aw6ngb09qf1";
};

buildInputs = [ setuptools-git ];
propagatedBuildInputs = [ click colorama ];

doCheck = false;
pythonImportsCheck = [ "snowmachine" ];

meta = with lib; {
description = "A python script that will make your terminal snow";
homepage = "http://github.com/sontek/snowmachine";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ djanatyn ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -29445,6 +29445,8 @@ in

snowsql = callPackage ../applications/misc/snowsql {};

snowmachine = python3Packages.callPackage ../applications/snowmachine {};

sidequest = callPackage ../applications/misc/sidequest {};

maphosts = callPackage ../tools/networking/maphosts {};