mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-24 23:14:12 +03:00
19 lines
345 B
Nix
19 lines
345 B
Nix
{
|
|
dream2nix,
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
dream2nix.modules.dream2nix.WIP-python-pyproject
|
|
];
|
|
|
|
mkDerivation = {
|
|
src = ./.;
|
|
};
|
|
|
|
# This is not strictly required, but setting it will keep most dependencies
|
|
# locked, even when new dependencies are added via pyproject.toml
|
|
pip.pypiSnapshotDate = "2023-09-12";
|
|
}
|