tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python39Packages.livestreamer-curses: cleanup
Sandro Jäckel
4 years ago
7615b74c
205903c9
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
livestreamer-curses
default.nix
+3
-3
pkgs/development/python-modules/livestreamer-curses/default.nix
···
6
6
}:
7
7
8
8
buildPythonPackage rec {
9
9
-
version = "1.5.2";
10
9
pname = "livestreamer-curses";
10
10
+
version = "1.5.2";
11
11
disabled = isPyPy;
12
12
13
13
src = fetchFromGitHub {
14
14
owner = "gapato";
15
15
repo = "livestreamer-curses";
16
16
-
rev = "v1.5.2";
16
16
+
rev = "v${version}";
17
17
sha256 = "sha256-Pi0PIOUhMMAWft9ackB04IgF6DyPrXppNqyVjozIjN4=";
18
18
};
19
19
···
23
23
homepage = "https://github.com/gapato/livestreamer-curses";
24
24
description = "Curses frontend for livestreamer";
25
25
license = licenses.mit;
26
26
+
maintainers = with maintainers; [ ];
26
27
};
27
27
-
28
28
}