poetry2nix: 1.15.3 -> 1.15.4
This commit is contained in:
parent
65aeed59c5
commit
1ba244258d
@ -71,7 +71,7 @@ in
|
|||||||
lib.makeScope pkgs.newScope (self: {
|
lib.makeScope pkgs.newScope (self: {
|
||||||
|
|
||||||
# Poetry2nix version
|
# Poetry2nix version
|
||||||
version = "1.15.3";
|
version = "1.15.4";
|
||||||
|
|
||||||
/* Returns a package of editable sources whose changes will be available without needing to restart the
|
/* Returns a package of editable sources whose changes will be available without needing to restart the
|
||||||
nix-shell.
|
nix-shell.
|
||||||
|
@ -81,6 +81,10 @@ self: super:
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
celery = super.celery.overridePythonAttrs (old: {
|
||||||
|
propagatedBuildInputs = old.propagatedBuildInputs ++ [ self.setuptools ];
|
||||||
|
});
|
||||||
|
|
||||||
cssselect2 = super.cssselect2.overridePythonAttrs (
|
cssselect2 = super.cssselect2.overridePythonAttrs (
|
||||||
old: {
|
old: {
|
||||||
buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ];
|
buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ];
|
||||||
@ -135,6 +139,12 @@ self: super:
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
daphne = super.daphne.overridePythonAttrs (old: {
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py --replace 'setup_requires=["pytest-runner"],' ""
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
|
||||||
datadog-lambda = super.datadog-lambda.overridePythonAttrs (old: {
|
datadog-lambda = super.datadog-lambda.overridePythonAttrs (old: {
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace setup.py --replace "setuptools==" "setuptools>="
|
substituteInPlace setup.py --replace "setuptools==" "setuptools>="
|
||||||
@ -142,6 +152,10 @@ self: super:
|
|||||||
buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools ];
|
buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools ];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
dcli = super.dcli.overridePythonAttrs (old: {
|
||||||
|
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ self.setuptools ];
|
||||||
|
});
|
||||||
|
|
||||||
ddtrace = super.ddtrace.overridePythonAttrs (old: {
|
ddtrace = super.ddtrace.overridePythonAttrs (old: {
|
||||||
buildInputs = (old.buildInputs or [ ]) ++
|
buildInputs = (old.buildInputs or [ ]) ++
|
||||||
(pkgs.lib.optionals pkgs.stdenv.isDarwin [ pkgs.darwin.IOKit ]) ++ [ self.cython ];
|
(pkgs.lib.optionals pkgs.stdenv.isDarwin [ pkgs.darwin.IOKit ]) ++ [ self.cython ];
|
||||||
@ -364,6 +378,11 @@ self: super:
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
jsonslicer = super.jsonslicer.overridePythonAttrs (old: {
|
||||||
|
nativeBuildInputs = old.nativeBuildInputs ++ [ pkgs.pkgconfig ];
|
||||||
|
buildInputs = old.buildInputs ++ [ pkgs.yajl ];
|
||||||
|
});
|
||||||
|
|
||||||
jupyter = super.jupyter.overridePythonAttrs (
|
jupyter = super.jupyter.overridePythonAttrs (
|
||||||
old: rec {
|
old: rec {
|
||||||
# jupyter is a meta-package. Everything relevant comes from the
|
# jupyter is a meta-package. Everything relevant comes from the
|
||||||
|
Loading…
Reference in New Issue
Block a user