mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 08:26:37 +01:00
56 lines
1 KiB
Nix
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 = [ ];
|
|
};
|
|
}
|