diff --git a/pkgs/by-name/ng/ngrid/package.nix b/pkgs/by-name/ng/ngrid/package.nix deleted file mode 100644 index 193080ad3914..000000000000 --- a/pkgs/by-name/ng/ngrid/package.nix +++ /dev/null @@ -1,73 +0,0 @@ -{ - lib, - fetchFromGitHub, - python3, - expect, -}: - -python3.pkgs.buildPythonApplication rec { - pname = "ngrid"; - version = "0.1.0"; - pyproject = true; - - src = fetchFromGitHub { - owner = "twosigma"; - repo = "ngrid"; - rev = version; - hash = "sha256-69icp0m+bAHBsQFIDGd8NjfMsMYsB1sUfzuP/OBl5jc="; - }; - - nativeBuildInputs = [ - python3.pkgs.setuptools - python3.pkgs.wheel - ]; - - propagatedBuildInputs = [ - python3.pkgs.six - python3.pkgs.numpy - python3.pkgs.pytz - python3.pkgs.pandas - ]; - - pythonImportsCheck = [ "ngrid.main" ]; - - nativeCheckInputs = [ - python3.pkgs.pytest - expect - ]; - checkPhase = '' - runHook preCheck - - pytest test/formatters.py - - echo -e "a,b,c\n1.98423,some string,5824.2" > test.csv - - expect <