python311Packages.bumps: 0.9.1 -> 0.9.2

This commit is contained in:
R. Ryantm 2024-03-06 10:26:23 +00:00 committed by Weijia Wang
parent 9df3e30ce2
commit 578d947722

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;