nixpkgs/pkgs/development/python-modules/atomman/default.nix

41 lines
802 B
Nix
Raw Normal View History

2018-10-11 00:13:56 +02:00
{ stdenv
, buildPythonPackage
, fetchPypi
, xmltodict
, datamodeldict
, numpy
, matplotlib
, scipy
, pandas
, cython
, numericalunits
, pytest
}:
buildPythonPackage rec {
2019-04-16 19:15:34 +02:00
version = "1.2.5";
2018-10-11 00:13:56 +02:00
pname = "atomman";
src = fetchPypi {
inherit pname version;
2019-04-16 19:15:34 +02:00
sha256 = "10eca8c6fc890f2ee2e30f65178c618175529e9998be449e276f7c3d1dce0e95";
2018-10-11 00:13:56 +02:00
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ xmltodict datamodeldict numpy matplotlib scipy pandas cython numericalunits ];
# tests not included with Pypi release
doCheck = false;
checkPhase = ''
py.test tests
'';
meta = with stdenv.lib; {
homepage = https://github.com/usnistgov/atomman/;
description = "Atomistic Manipulation Toolkit";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}