Mentions légales du service

Skip to content
Snippets Groups Projects
Commit c01ddb0d authored by MERCIER Michael's avatar MERCIER Michael
Browse files

[nix] clean nix files

parent 3f91de6c
No related branches found
Tags 2.1 batsim_2.0_compatible
No related merge requests found
with import <nixpkgs> {};
with pkgs.python36Packages;
with import (fetchTarball "https://gitlab.inria.fr/vreis/datamove-nix/repository/master/archive.tar.gz") {};
buildPythonPackage rec {
name = "pybatsim";
src = ./batsim;
propagatedBuildInputs = with python36Packages; [
sortedcontainers
pyzmq
redis
pandas
docopt
# for testing
coverage
pytest
# for dev
mypy
# for doc generation
sphinx
] ++ [ batsim ];
};
with import <nixpkgs> {};
with pkgs.python36Packages;
with import (fetchTarball "https://gitlab.inria.fr/vreis/datamove-nix/repository/master/archive.tar.gz") {};
with import (fetchTarball "https://gitlab.inria.fr/vreis/datamove-nix/repository/master/archive.tar.gz") {
pkgs = (import <nixpkgs> {});
};
buildPythonPackage rec {
name = "pybatsim";
src = ./batsim;
name = "pybatsim-local";
src = ./.;
doCheck = false;
propagatedBuildInputs = with python36Packages; [
sortedcontainers
pyzmq
......@@ -18,6 +21,6 @@ buildPythonPackage rec {
ipdb
# for doc generation
sphinx
] ++ [ batsim ];
];
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment