Merge pull request #251583 from fabaff/particle-bump

python311Packages.particle: 0.21.2 -> 0.23.0
This commit is contained in:
Doron Behar 2023-08-26 19:10:30 +00:00 committed by GitHub
commit 6b90730466
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,7 @@
{ lib
, attrs
, buildPythonPackage
, deprecated
, fetchFromGitHub
, fetchPypi
, hatch-vcs
@ -15,14 +16,14 @@
buildPythonPackage rec {
pname = "particle";
version = "0.21.2";
version = "0.23.0";
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-BDTTmqtPxyvORSoR+CJzb5WTfF9BFrDoMSVOvO9s/Ns=";
hash = "sha256-2BD4/CfeuOf9ZBdAF9lgfVBSIknAlzoACOWA+T2xF1A=";
};
postPatch = ''
@ -39,6 +40,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
attrs
deprecated
hepunits
];