Merge pull request #173150 from fabaff/loopy-fix

python310Packages.pymbolic: remove pytest
main
Robert Scott 2 years ago committed by GitHub
commit e87d7fdd6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      pkgs/development/python-modules/pymbolic/default.nix

@ -2,17 +2,21 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, matchpy , matchpy
, pytools
, pytestCheckHook , pytestCheckHook
, pythonOlder
, pytools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pymbolic"; pname = "pymbolic";
version = "2022.1"; version = "2022.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-tS9FHdC5gD4D3jMgrzt85XIwcAYcbSMcACFvbaQlkBI="; hash = "sha256-tS9FHdC5gD4D3jMgrzt85XIwcAYcbSMcACFvbaQlkBI=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -24,10 +28,20 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
postPatch = ''
# pytest is a test requirement not a run-time one
substituteInPlace setup.py \
--replace '"pytest>=2.3",' ""
'';
pythonImportsCheck = [
"pymbolic"
];
meta = with lib; { meta = with lib; {
description = "A package for symbolic computation"; description = "A package for symbolic computation";
homepage = "https://documen.tician.de/pymbolic/"; homepage = "https://documen.tician.de/pymbolic/";
license = licenses.mit; license = licenses.mit;
maintainers = [ maintainers.costrouc ]; maintainers = with maintainers; [ costrouc ];
}; };
} }

Loading…
Cancel
Save