python.pkgs.poetry-core: init at 1.0.0a9
This commit is contained in:
parent
2a1febbf78
commit
9c50cabc65
22
pkgs/development/python-modules/poetry-core/default.nix
Normal file
22
pkgs/development/python-modules/poetry-core/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "poetry-core";
|
||||
version = "1.0.0a9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "f08e9829fd06609ca5615faa91739b589eb71e025a6aaf7ddffb698676eb7c8c";
|
||||
};
|
||||
|
||||
doCheck = false; # No tests in sdist.
|
||||
|
||||
meta = {
|
||||
description = "Core utilities for Poetry";
|
||||
homepage = "https://github.com/python-poetry/core";
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
}
|
@ -1142,6 +1142,8 @@ in {
|
||||
|
||||
poetry = callPackage ../development/python-modules/poetry { };
|
||||
|
||||
poetry-core = callPackage ../development/python-modules/poetry-core { };
|
||||
|
||||
polyline = callPackage ../development/python-modules/polyline { };
|
||||
|
||||
postorius = disabledIf (!isPy3k) (callPackage ../servers/mail/mailman/postorius.nix { });
|
||||
|
Loading…
Reference in New Issue
Block a user