forked from mirrors/nixpkgs
31 lines
642 B
Nix
31 lines
642 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
, sqlparse
|
|
, tabulate
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "yoyo-migrations";
|
|
version = "7.3.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-RIQIKOGgFp9UHnAtWu3KgYWtpoCH57rUhQpvxdced6Q=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ 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 ];
|
|
};
|
|
}
|