Initial commit
commit
784adfe764
@ -0,0 +1,13 @@
|
||||
with import <nixpkgs> {};
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "graphing-env";
|
||||
|
||||
buildInputs = [
|
||||
(python3.withPackages (ps: with ps; [
|
||||
pylint
|
||||
plotly
|
||||
clint
|
||||
]))
|
||||
];
|
||||
}
|
@ -0,0 +1,2 @@
|
||||
plotly==4.8.1
|
||||
clint
|
Loading…
Reference in New Issue