nixpkgs/pkgs/development/python-modules/pyrevolve/default.nix
2026-02-19 23:56:03 +01:00

56 lines
1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
contexttimer,
setuptools,
versioneer,
cython_0,
numpy,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pyrevolve";
version = "2.2.6";
pyproject = true;
src = fetchFromGitHub {
owner = "devitocodes";
repo = pname;
tag = "v${version}";
hash = "sha256-jjiFOlxXjaa4L4IEtojeeS0jx4GsftAeIGBpJLhUcY4=";
};
postPatch = ''
substituteInPlace setup.py \
--replace ', "flake8"' ""
'';
nativeBuildInputs = [
cython_0
setuptools
versioneer
];
propagatedBuildInputs = [
contexttimer
numpy
];
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
rm -rf pyrevolve
'';
pythonImportsCheck = [ "pyrevolve" ];
meta = {
homepage = "https://github.com/devitocodes/pyrevolve";
changelog = "https://github.com/devitocodes/pyrevolve/releases/tag/${src.tag}";
description = "Python library to manage checkpointing for adjoints";
license = lib.licenses.epl10;
maintainers = [ ];
};
}