tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.wrapio: remove 'with lib'
Stefan Frijters
9 months ago
1304eef9
921a47b8
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
wrapio
default.nix
+3
-3
pkgs/development/python-modules/wrapio/default.nix
···
22
23
pythonImportsCheck = [ "wrapio" ];
24
25
-
meta = with lib; {
26
description = "Handling event-based streams";
27
homepage = "https://github.com/Exahilosys/wrapio";
28
changelog = "https://github.com/Exahilosys/wrapio/releases/tag/v${version}";
29
-
license = licenses.mit;
30
-
maintainers = with maintainers; [ sfrijters ];
31
};
32
}
···
22
23
pythonImportsCheck = [ "wrapio" ];
24
25
+
meta = {
26
description = "Handling event-based streams";
27
homepage = "https://github.com/Exahilosys/wrapio";
28
changelog = "https://github.com/Exahilosys/wrapio/releases/tag/v${version}";
29
+
license = lib.licenses.mit;
30
+
maintainers = with lib.maintainers; [ sfrijters ];
31
};
32
}