about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/MechanicalSoup/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/MechanicalSoup/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/MechanicalSoup/default.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/MechanicalSoup/default.nix b/nixpkgs/pkgs/development/python-modules/MechanicalSoup/default.nix
deleted file mode 100644
index e4ce48158f64..000000000000
--- a/nixpkgs/pkgs/development/python-modules/MechanicalSoup/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ fetchPypi, buildPythonPackage, lib
-, requests, beautifulsoup4, six, lxml
-, pytestrunner, requests-mock, pytestcov, pytest
-}:
-
-buildPythonPackage rec {
-  pname = "MechanicalSoup";
-  version = "1.0.0";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "37d3b15c1957917d3ae171561e77f4dd4c08c35eb4500b8781f6e7e1bb6c4d07";
-  };
-
-  checkInputs = [ pytest pytestrunner requests-mock pytestcov ];
-
-  propagatedBuildInputs = [ lxml requests beautifulsoup4 six ];
-
-  # Requires network
-  doCheck = false;
-
-  postPatch = ''
-    # Is in setup_requires but not used in setup.py...
-    substituteInPlace setup.py --replace "'pytest-runner'" ""
-  '';
-
-  meta = with lib; {
-    description = "A Python library for automating interaction with websites";
-    homepage = "https://github.com/hickford/MechanicalSoup";
-    license = licenses.mit;
-    maintainers = [ maintainers.jgillich ];
-  };
-}