refactor(package): pull out all realization from default.nix

This commit is contained in:
2025-11-03 20:08:20 +00:00
parent 94fbbdf0d9
commit 9d97fd8d87
11 changed files with 123 additions and 114 deletions

8
package/py3-asyncio.nix Normal file
View File

@@ -0,0 +1,8 @@
{ python3Packages }: python3Packages.buildPythonPackage rec {
pname = "asyncio";
version = "3.4.3";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "sha256-gzYP+LyXmA5P8lyWTHvTkj0zPRd6pPf7c2sBnybHy0E=";
};
}