python3Packages.poetry: use pyproject

Note we should not import modules from within a derivation.
This will need to be fixed.
This commit is contained in:
Will Dietz
2019-04-14 13:40:11 -05:00
committed by Frederik Rietdijk
parent 840b538da0
commit 5102201ba4
2 changed files with 15 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
{ buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "glob2";
version = "0.6";
src = fetchPypi {
inherit pname version;
sha256 = "1miyz0pjyji4gqrzl04xsxcylk3h2v9fvi7hsg221y11zy3adc7m";
};
}