83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
36 lines
698 B
Nix
36 lines
698 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, importlib-metadata
|
|
, setuptools
|
|
, sqlparse
|
|
, tabulate
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "yoyo-migrations";
|
|
version = "8.2.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-ggYGoD4mLPHNT1niVsKPpEZCUiTVuCo9EnX9eBeFI+Q=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
importlib-metadata
|
|
setuptools
|
|
sqlparse
|
|
tabulate
|
|
];
|
|
|
|
doCheck = false; # pypi tarball does not contain tests
|
|
|
|
pythonImportsCheck = [ "yoyo" ];
|
|
|
|
meta = with lib; {
|
|
description = "Database schema migration tool";
|
|
homepage = "https://ollycope.com/software/yoyo";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ prusnak ];
|
|
};
|
|
}
|