summary refs log tree commit diff
path: root/pkgs/development/python-modules/MechanicalSoup/default.nix
blob: a022fd9fc4103a7eb1fbcd91f4bd3a02b91a0802 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ fetchPypi, buildPythonPackage, lib
, requests, beautifulsoup4, six }:


buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "MechanicalSoup";
  version = "0.7.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0wh93rml446ipx603n5z5i5bpan46pzliq6sw76d0ms9w7w2658d";
  };

  propagatedBuildInputs = [ requests beautifulsoup4 six ];

  meta = with lib; {
    description = "A Python library for automating interaction with websites";
    homepage = https://github.com/hickford/MechanicalSoup;
    license = licenses.mit;
    maintainers = [ maintainers.jgillich ];
  };
}