python3Packages.atsim_potentials: attempt fix, mark broken

This commit is contained in:
Jonathan Ringer 2020-11-29 09:46:36 -08:00 committed by Frederik Rietdijk
parent 36ae4211a7
commit 8867b954e6

View File

@ -1,8 +1,12 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, configparser
, pyparsing
, pytest , pytest
, future , future
, openpyxl
, wrapt
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -15,7 +19,18 @@ buildPythonPackage rec {
}; };
checkInputs = [ pytest ]; checkInputs = [ pytest ];
propagatedBuildInputs = [ future ]; propagatedBuildInputs = [
configparser
future
openpyxl
pyparsing
wrapt
];
postPatch = ''
substituteInPlace setup.py \
--replace "wrapt==1.11.2" "wrapt~=1.11"
'';
# tests are not included with release # tests are not included with release
doCheck = false; doCheck = false;
@ -29,5 +44,6 @@ buildPythonPackage rec {
description = "Provides tools for working with pair and embedded atom method potential models including tabulation routines for DL_POLY and LAMMPS"; description = "Provides tools for working with pair and embedded atom method potential models including tabulation routines for DL_POLY and LAMMPS";
license = licenses.mit; license = licenses.mit;
maintainers = [ maintainers.costrouc ]; maintainers = [ maintainers.costrouc ];
broken = true; # missing cexprtk package
}; };
} }