mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 09:44:18 +00:00
python3.pkgs.particle: init at 0.20.1
This commit is contained in:
parent
55ea018afa
commit
34f5c38b50
56
pkgs/development/python-modules/particle/default.nix
Normal file
56
pkgs/development/python-modules/particle/default.nix
Normal file
@ -0,0 +1,56 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, fetchPypi
|
||||
, setuptools-scm
|
||||
, attrs
|
||||
, deprecated
|
||||
, hepunits
|
||||
, pytestCheckHook
|
||||
, tabulate
|
||||
, pandas
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "particle";
|
||||
version = "0.20.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-HoWWwoGMrkRqlYzrF2apGsxsZAHwHbHSO5TCSCelxUc=";
|
||||
};
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
attrs
|
||||
deprecated
|
||||
hepunits
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"particle"
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
# Disable benchmark tests, so we won't need pytest-benchmark and pytest-cov
|
||||
# as dependencies
|
||||
substituteInPlace pyproject.toml \
|
||||
--replace '"--benchmark-disable", ' ""
|
||||
rm tests/particle/test_performance.py
|
||||
'';
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
tabulate
|
||||
pandas
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Package to deal with particles, the PDG particle data table, PDGIDs, etc.";
|
||||
homepage = "https://github.com/scikit-hep/particle";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ doronbehar ];
|
||||
};
|
||||
}
|
@ -5957,6 +5957,8 @@ in {
|
||||
|
||||
parts = callPackage ../development/python-modules/parts { };
|
||||
|
||||
particle = callPackage ../development/python-modules/particle { };
|
||||
|
||||
parver = callPackage ../development/python-modules/parver { };
|
||||
arpeggio = callPackage ../development/python-modules/arpeggio { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user