tsplot/default.nix

11 lines
198 B
Nix
Raw Permalink Normal View History

2020-04-04 11:35:36 +02:00
{ python3 }:
with python3.pkgs;
buildPythonPackage rec {
name = "tsplot";
src = ./.;
propagatedBuildInputs = [ pyyaml pandas dash ];
buildInputs = [];
doCheck = false;
shellHook = "";
}