python3Packages.yoyo-migrations: 7.3.2 -> 8.2.0
This commit is contained in:
parent
57123cd83b
commit
79a6bfe310
1 changed files with 9 additions and 3 deletions
|
@ -1,6 +1,7 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, importlib-metadata
|
||||
, setuptools
|
||||
, sqlparse
|
||||
, tabulate
|
||||
|
@ -8,14 +9,19 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "yoyo-migrations";
|
||||
version = "7.3.2";
|
||||
version = "8.2.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-RIQIKOGgFp9UHnAtWu3KgYWtpoCH57rUhQpvxdced6Q=";
|
||||
sha256 = "sha256-ggYGoD4mLPHNT1niVsKPpEZCUiTVuCo9EnX9eBeFI+Q=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ setuptools sqlparse tabulate ];
|
||||
propagatedBuildInputs = [
|
||||
importlib-metadata
|
||||
setuptools
|
||||
sqlparse
|
||||
tabulate
|
||||
];
|
||||
|
||||
doCheck = false; # pypi tarball does not contain tests
|
||||
|
||||
|
|
Loading…
Reference in a new issue