bat: 0.24.0 -> 0.25.0 (#371913)
[NixPkgs.git] / pkgs / development / python-modules / pysocks / default.nix
blob82c8c2dba332ad6df18a5e02a1a41b39956c774a
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "pysocks";
9   version = "1.7.1";
10   format = "setuptools";
12   src = fetchPypi {
13     pname = "PySocks";
14     inherit version;
15     sha256 = "184sg65mbmih6ljblfsxcmq5js5l7dj3gpn618w9q5dy3rbh921z";
16   };
18   doCheck = false;
20   meta = with lib; {
21     description = "SOCKS module for Python";
22     license = licenses.bsd3;
23     maintainers = with maintainers; [ thoughtpolice ];
24   };