Skip to content

Commit

Permalink
Drop the tabulate dependecy
Browse files Browse the repository at this point in the history
  • Loading branch information
tothtamas28 committed Jul 22, 2022
1 parent aab5118 commit baa35bb
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 56 deletions.
4 changes: 0 additions & 4 deletions pyk/nix/overlay.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
self: super: {
types-tabulate = self.callPackage ./packages/types-tabulate { };

tabulate = self.callPackage ./packages/tabulate { };

graphviz = self.callPackage ./packages/graphviz { };

pyk = self.callPackage ./packages/pyk { };
Expand Down
4 changes: 2 additions & 2 deletions pyk/nix/packages/pyk/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
# If you run pynixify again, the file will be either overwritten or
# deleted, and you will lose the changes you made to it.

{ buildPythonPackage, fetchPypi, graphviz, lib, tabulate, types-tabulate }:
{ buildPythonPackage, fetchPypi, graphviz, lib }:

buildPythonPackage rec {
pname = "pyk";
version = "0.1.dev0";

src = lib.cleanSource ../../..;

propagatedBuildInputs = [ graphviz tabulate types-tabulate ];
propagatedBuildInputs = [ graphviz ];

# TODO FIXME
doCheck = false;
Expand Down
23 changes: 0 additions & 23 deletions pyk/nix/packages/tabulate/default.nix

This file was deleted.

23 changes: 0 additions & 23 deletions pyk/nix/packages/types-tabulate/default.nix

This file was deleted.

2 changes: 0 additions & 2 deletions pyk/requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
graphviz==0.19.1
tabulate==0.8.6
types-tabulate==0.8.6
2 changes: 0 additions & 2 deletions pyk/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ package_dir =
=src
install_requires =
graphviz == 0.19.1
tabulate == 0.8.6
types-tabulate == 0.8.6

[options.package_data]
* = py.typed
Expand Down

0 comments on commit baa35bb

Please sign in to comment.