Merge pull request #293727 from r-ryantm/auto-update/python311Packages.bumps

python311Packages.bumps: 0.9.1 -> 0.9.2
This commit is contained in:
Nick Cao 2024-03-07 10:03:22 -05:00 committed by GitHub
commit 7f87dc7d69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,25 +2,20 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, six
}:
buildPythonPackage rec {
pname = "bumps";
version = "0.9.1";
version = "0.9.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-J8NeV9FCUC5dLkosBzVrovxiJJbeuj8Xc50NGEI9Bms=";
hash = "sha256-PhoxjnkeLGL8vgEp7UubXKlS8p44TUkJ3c4SqRjKFJA=";
};
propagatedBuildInputs = [
six
];
# Module has no tests
doCheck = false;