mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 17:43:42 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
48 lines
818 B
Nix
48 lines
818 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, cryptography
|
|
, pytestCheckHook
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "torpy";
|
|
version = "1.1.6";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "torpyorg";
|
|
repo = "torpy";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Ni7GcpkxzAMtP4wBOFsi4KnxK+nC0XCZR/2Z/eS/C+w=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
cryptography
|
|
requests
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# requires network
|
|
"tests/integration"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"cryptography"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Pure python Tor client";
|
|
homepage = "https://github.com/torpyorg/torpy";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ larsr ];
|
|
};
|
|
}
|