+ xo-pyutil
This commit is contained in:
parent
707562f1f2
commit
44c135489e
4 changed files with 29 additions and 4 deletions
25
pkgs/xo-pyutil.nix
Normal file
25
pkgs/xo-pyutil.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
# nixpkgs dependencies
|
||||
stdenv, cmake, catch2,
|
||||
|
||||
python3Packages,
|
||||
|
||||
# xo dependencies
|
||||
xo-cmake, xo-refcnt,
|
||||
} :
|
||||
|
||||
stdenv.mkDerivation (finalattrs:
|
||||
{
|
||||
name = "xo-pyutil";
|
||||
|
||||
src = ../xo-pyutil;
|
||||
|
||||
cmakeFlags = ["-DCMAKE_MODULE_PATH=${xo-cmake}/share/cmake"];
|
||||
#doCheck = true;
|
||||
nativeBuildInputs = [ cmake catch2 xo-cmake ];
|
||||
propagatedBuildInputs = [
|
||||
xo-refcnt
|
||||
python3Packages.python
|
||||
python3Packages.pybind11
|
||||
];
|
||||
})
|
||||
|
|
@ -29,11 +29,11 @@
|
|||
xo-randomgen,
|
||||
xo-ordinaltree,
|
||||
xo-flatstring,
|
||||
xo-pyutil,
|
||||
# xo-reflectutil,
|
||||
# xo-ratio,
|
||||
# xo-unit,
|
||||
# xo-pyunit,
|
||||
# xo-pyutil,
|
||||
# xo-reflect,
|
||||
# xo-pyreflect,
|
||||
# xo-printjson,
|
||||
|
|
@ -64,7 +64,7 @@ buildEnv {
|
|||
xo-randomgen
|
||||
xo-ordinaltree
|
||||
xo-flatstring
|
||||
# xo-pyutil
|
||||
xo-pyutil
|
||||
# xo-reflectutil
|
||||
# xo-reflect
|
||||
# xo-pyreflect
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue