make nix overlay and remove nixpkgs dependency

This commit is contained in:
bit
2025-06-30 20:50:15 +02:00
parent 68803636ac
commit 746afe85fe
3 changed files with 52 additions and 69 deletions

15
pypi.nix Normal file
View File

@@ -0,0 +1,15 @@
{
pname,
version,
sha256,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
inherit pname version;
src = fetchPypi {
inherit pname version sha256;
};
}