nixpkgs/pkgs/development/python-modules/cepa/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchpatch
, fetchPypi
, python
, mock
}:
2022-01-18 10:30:11 +01:00
buildPythonPackage rec {
pname = "cepa";
2022-12-30 20:13:00 +01:00
version = "1.8.4";
format = "setuptools";
2022-01-18 10:30:11 +01:00
src = fetchPypi {
inherit pname version;
hash = "sha256-P7xwGsP8ic1/abxYptDXNbAU+kC2Hiwu/Tge0g21ipY=";
2022-01-18 10:30:11 +01:00
};
patches = [
(fetchpatch {
name = "python-3.11-compatibility.patch";
url = "https://github.com/onionshare/cepa/commit/0bf9aee7151e65594c532826bb04636e1d80fb6f.patch";
hash = "sha256-roSt9N5OvnOOxKZUee86zGXt0AsZCcbBdV2cLz1MB2k=";
})
];
2022-01-18 10:30:11 +01:00
postPatch = ''
rm test/unit/installation.py
sed -i "/test.unit.installation/d" test/settings.cfg
# https://github.com/torproject/stem/issues/56
sed -i '/MOCK_VERSION/d' run_tests.py
'';
nativeCheckInputs = [ mock ];
2022-01-18 10:30:11 +01:00
checkPhase = ''
touch .gitignore
${python.interpreter} run_tests.py -u
'';
meta = with lib; {
description = "Controller library that allows applications to interact with Tor";
mainProgram = "tor-prompt";
2022-01-18 10:30:11 +01:00
homepage = "https://github.com/onionshare/cepa";
license = licenses.lgpl3Only;
maintainers = with maintainers; [ bbjubjub ];
2022-01-18 10:30:11 +01:00
};
}