update cronsim to 2.5
This commit is contained in:
parent
a2bd0f0fbf
commit
f6a2539508
1 changed files with 16 additions and 0 deletions
16
flake.nix
16
flake.nix
|
@ -16,6 +16,22 @@
|
|||
py = pkgs.python3.override {
|
||||
packageOverrides = final: prev: {
|
||||
django = prev.django_4;
|
||||
cronsim =
|
||||
let
|
||||
version = "2.5";
|
||||
pname = "cronsim";
|
||||
src = pkgs.fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-FTzwIZ3MGgyp5xqDav22B5ZTfYxSHGhsenMTSDdXM78=";
|
||||
};
|
||||
in
|
||||
prev.buildPythonPackage {
|
||||
inherit pname version src;
|
||||
# nativeCheckInputs = [ prev.pytestCheckHook ];
|
||||
pythonImportsCheck = [
|
||||
"cronsim"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
baseImage = {
|
||||
|
|
Loading…
Reference in a new issue