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

This commit is contained in:
2025-11-03 20:08:20 +00:00
parent 4558ba4755
commit f363a91138
11 changed files with 123 additions and 114 deletions
+13
View File
@@ -0,0 +1,13 @@
{ python3Packages, fetchPypi }: python3Packages.buildPythonPackage rec {
pname = "payok";
version = "1.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-UN+MSNGhrPpw7hZRLAx8XY3jC0ldo+DlbaSJ64wWBHo=";
};
propagatedBuildInputs = with python3Packages; [ requests ];
doCheck = false;
}