mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
python310Packages.particle: add changelog to meta
This commit is contained in:
parent
ae66f57ac4
commit
2c3e1e1527
@ -19,6 +19,7 @@ buildPythonPackage rec {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-SDdIg05+gfLNaQ+glitTf3Z/6K9HBci62mjIu9rIoX0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
@ -29,6 +30,12 @@ buildPythonPackage rec {
|
||||
hepunits
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
tabulate
|
||||
pandas
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"particle"
|
||||
];
|
||||
@ -41,16 +48,13 @@ buildPythonPackage rec {
|
||||
rm tests/particle/test_performance.py
|
||||
'';
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
tabulate
|
||||
pandas
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Package to deal with particles, the PDG particle data table, PDGIDs, etc.";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Package to deal with particles, the PDG particle data table and others";
|
||||
homepage = "https://github.com/scikit-hep/particle";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ doronbehar ];
|
||||
changelog = "https://github.com/scikit-hep/particle/releases/tag/v${version}";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ doronbehar ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user