mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pluggy: init at 0.3.1
This commit is contained in:
parent
15f6633210
commit
c2224b8c0e
1 changed files with 17 additions and 0 deletions
|
@ -23160,6 +23160,23 @@ in modules // {
|
|||
};
|
||||
};
|
||||
|
||||
pluggy = buildPythonPackage rec {
|
||||
name = "pluggy-${version}";
|
||||
version = "0.3.1";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/p/pluggy/${name}.tar.gz";
|
||||
sha256 = "18qfzfm40bgx672lkg8q9x5hdh76n7vax99aank7vh2nw21wg70m";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Plugin and hook calling mechanisms for Python";
|
||||
homepage = "https://pypi.python.org/pypi/pluggy";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jgeerds ];
|
||||
};
|
||||
};
|
||||
|
||||
xcffib = buildPythonPackage rec {
|
||||
version = "0.3.2";
|
||||
name = "xcffib-${version}";
|
||||
|
|
Loading…
Reference in a new issue