mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
python3Packages.yoyo-migrations: init at 7.3.2
This commit is contained in:
parent
96ba8a65a1
commit
f1c414858b
30
pkgs/development/python-modules/yoyo-migrations/default.nix
Normal file
30
pkgs/development/python-modules/yoyo-migrations/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -10996,6 +10996,8 @@ in {
|
||||
phantomjsSupport = false;
|
||||
};
|
||||
|
||||
yoyo-migrations = callPackage ../development/python-modules/yoyo-migrations { };
|
||||
|
||||
yt-dlp = callPackage ../tools/misc/yt-dlp { };
|
||||
|
||||
yt-dlp-light = callPackage ../tools/misc/yt-dlp {
|
||||
|
Loading…
Reference in New Issue
Block a user