Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 456 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 456 Bytes

Data science related nix packages

This is a collection of packages that are still a bit oo experimental to be folded into nixpkgs.

To test that they're still building run nix-build in this directory.

You can include the packages in another project by providing pkgs as an argument. E.g.

let
  pkgs = (import <nixpkgs> {}).pkgs;
  tompkgs = import <tompkgs> { inherit pkgs; };
propagatedBuildInputs = [
    numpy
    tompkgs.arctic
];