mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #144633 from ncfavier/mathlibtools
mathlibtools: fix build
This commit is contained in:
commit
43d18e0d76
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, PyGithub, GitPython, toml, click, tqdm,
|
||||
paramiko, networkx, pydot, pyyaml }:
|
||||
networkx, pydot, pyyaml, atomicwrites }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mathlibtools";
|
||||
|
@ -11,7 +11,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
PyGithub GitPython toml click tqdm paramiko networkx pydot pyyaml
|
||||
PyGithub GitPython toml click tqdm networkx pydot pyyaml atomicwrites
|
||||
];
|
||||
|
||||
# requires internet access
|
||||
|
|
Loading…
Reference in a new issue