mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.pgspecial: init at 1.3.0
This commit is contained in:
parent
5689ab480a
commit
b9e42f1b9a
1 changed files with 20 additions and 0 deletions
|
@ -15642,6 +15642,26 @@ in modules // {
|
|||
};
|
||||
};
|
||||
|
||||
pgspecial = buildPythonPackage rec {
|
||||
name = "pgspecial-${version}";
|
||||
version = "1.3.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
sha256 = "1nxqqkchigrznywmm73n1ksp5hhhwswz8anrlwpi9i75wq792mg1";
|
||||
url = "mirror://pypi/p/pgspecial/${name}.tar.gz";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ click ];
|
||||
|
||||
meta = {
|
||||
description = "Meta-commands handler for Postgres Database";
|
||||
homepage = https://pypi.python.org/pypi/pgspecial;
|
||||
licence = licenses.bsd3;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
mycli = buildPythonPackage rec {
|
||||
name = "mycli-${version}";
|
||||
version = "1.4.0";
|
||||
|
|
Loading…
Reference in a new issue