dream2nix/modules/drvs/ansible/default.nix
2023-07-19 15:53:03 +02:00

30 lines
409 B
Nix

{
config,
lib,
...
}: let
l = lib // builtins;
in {
imports = [
../../drv-parts/pip
];
deps = {nixpkgs, ...}: {
python = nixpkgs.python39;
};
name = "ansible";
version = "2.7.1";
buildPythonPackage = {
pythonImportsCheck = [
config.name
];
};
pip = {
pypiSnapshotDate = "2023-01-01";
requirementsList = ["${config.name}==${config.version}"];
};
}