mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
603a369b89
Misunderstood the error I was seeing.
This reverts commit 0d3eb70133
.
26 lines
877 B
Nix
26 lines
877 B
Nix
# Build a python package from info made available by setupcfg2nix.
|
|
#
|
|
# * src: The source of the package.
|
|
# * info: The package information generated by setupcfg2nix.
|
|
# * meta: Standard nixpkgs metadata.
|
|
# * application: Whether this package is a python library or an
|
|
# application which happens to be written in python.
|
|
# * doCheck: Whether to run the test suites.
|
|
pythonPackages:
|
|
{ src, info, meta ? {}, application ? false, doCheck ? true }: let
|
|
build = if application
|
|
then pythonPackages.buildPythonApplication
|
|
else pythonPackages.buildPythonPackage;
|
|
in build {
|
|
inherit (info) pname version;
|
|
|
|
inherit src meta doCheck;
|
|
|
|
nativeBuildInputs = map (p: pythonPackages.${p}) (
|
|
(info.setup_requires or []) ++
|
|
(if doCheck then (info.tests_require or []) else []));
|
|
|
|
propagatedBuildInputs = map (p: pythonPackages.${p})
|
|
(info.install_requires or []);
|
|
}
|