0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

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
};
}