about summary refs log tree commit diff
path: root/pkgs/development/python2-modules
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-12-03 22:02:45 -0800
committerRobert Schütz <nix@dotlambda.de>2022-12-03 22:50:20 -0800
commite5f735efd30b502c05f7855a35f0a84046038d69 (patch)
tree4333c9b74abb8780dd3453e99adcd73a5c0050f7 /pkgs/development/python2-modules
parent76320a7d94e1097f5d7e3b82226e6a8433665c80 (diff)
downloadnixlib-e5f735efd30b502c05f7855a35f0a84046038d69.tar
nixlib-e5f735efd30b502c05f7855a35f0a84046038d69.tar.gz
nixlib-e5f735efd30b502c05f7855a35f0a84046038d69.tar.bz2
nixlib-e5f735efd30b502c05f7855a35f0a84046038d69.tar.lz
nixlib-e5f735efd30b502c05f7855a35f0a84046038d69.tar.xz
nixlib-e5f735efd30b502c05f7855a35f0a84046038d69.tar.zst
nixlib-e5f735efd30b502c05f7855a35f0a84046038d69.zip
python2Packages.construct: remove
Diffstat (limited to 'pkgs/development/python2-modules')
-rw-r--r--pkgs/development/python2-modules/construct/default.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/development/python2-modules/construct/default.nix b/pkgs/development/python2-modules/construct/default.nix
deleted file mode 100644
index 5bbbd1501453..000000000000
--- a/pkgs/development/python2-modules/construct/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ lib, stdenv, buildPythonPackage, fetchFromGitHub
-, pytestCheckHook, pytest-benchmark, enum34, numpy, arrow, ruamel-yaml
-}:
-
-buildPythonPackage rec {
-  pname   = "construct";
-  version = "2.10.54";
-
-  # no tests in PyPI tarball
-  src = fetchFromGitHub {
-    owner  = pname;
-    repo   = pname;
-    rev    = "v${version}";
-    sha256 = "1mqspsn6bf3ibvih1zna2glkg8iw7vy5zg9gzg0d1m8zcndk2c48";
-  };
-
-  checkInputs = [ pytestCheckHook enum34 numpy ];
-
-  # these have dependencies that are broken on Python 2
-  disabledTestPaths = [
-    "tests/gallery/test_gallery.py"
-    "tests/test_benchmarks.py"
-    "tests/test_compiler.py"
-  ];
-
-  disabledTests = [
-    "test_benchmarks"
-    "test_timestamp"
-  ] ++ lib.optionals stdenv.isDarwin [
-    "test_multiprocessing"
-  ];
-
-  meta = with lib; {
-    description = "Powerful declarative parser (and builder) for binary data";
-    homepage = "https://construct.readthedocs.org/";
-    license = licenses.mit;
-    maintainers = with maintainers; [ dotlambda ];
-  };
-}