repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
bat: 0.24.0 -> 0.25.0 (#371913)
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
pysocks
/
default.nix
blob
82c8c2dba332ad6df18a5e02a1a41b39956c774a
1
{
2
lib,
3
buildPythonPackage,
4
fetchPypi,
5
}:
6
7
buildPythonPackage rec {
8
pname = "pysocks";
9
version = "1.7.1";
10
format = "setuptools";
11
12
src = fetchPypi {
13
pname = "PySocks";
14
inherit version;
15
sha256 = "184sg65mbmih6ljblfsxcmq5js5l7dj3gpn618w9q5dy3rbh921z";
16
};
17
18
doCheck = false;
19
20
meta = with lib; {
21
description = "SOCKS module for Python";
22
license = licenses.bsd3;
23
maintainers = with maintainers; [ thoughtpolice ];
24
};
25
}