python3Packages.sqlalchemy: 1.4.29 -> 1.4.31

This commit is contained in:
Martin Weinelt 2022-01-21 10:05:31 +01:00
parent 8fb7e9b9d4
commit 002467e0d6
2 changed files with 10 additions and 4 deletions

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, flit-core
, dufte
, matplotlib
, numpy
@ -14,15 +15,19 @@
buildPythonPackage rec {
pname = "perfplot";
version = "0.9.13";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "nschloe";
repo = pname;
rev = version;
rev = "v${version}";
sha256 = "0ry5x38sv8gh505z6ip90jymm7kfgyf80y3vjb2i6z567bnblam6";
};
format = "pyproject";
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
dufte
@ -44,5 +49,6 @@ buildPythonPackage rec {
homepage = "https://github.com/nschloe/perfplot";
license = licenses.mit;
maintainers = with maintainers; [ costrouc ];
broken = true; # missing matplotx dependency
};
}

View File

@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "SQLAlchemy";
version = "1.4.29";
version = "1.4.31";
src = fetchPypi {
inherit pname version;
sha256 = "sha256:+iutFOFHS6ZJz8lpwdLskV3T55Z380a7/gjpPvkCCzk=";
sha256 = "sha256-WCtZ0eV4CkR6raIrRh5QtASp3AV2jaHYc2itgZBGhBg=";
};
propagatedBuildInputs = [