ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / cepa / default.nix
blobf198d8b058dd27fbb52670999f2ba08e94b09204
1 { lib, buildPythonPackage, fetchPypi, python, mock }:
3 buildPythonPackage rec {
4   pname = "cepa";
5   version = "1.8.3";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "HcbwsyTTei7SyidGSOzo/SyWodL0QPWMDKF6/Ute3no=";
10   };
12   postPatch = ''
13     rm test/unit/installation.py
14     sed -i "/test.unit.installation/d" test/settings.cfg
15     # https://github.com/torproject/stem/issues/56
16     sed -i '/MOCK_VERSION/d' run_tests.py
17   '';
19   checkInputs = [ mock ];
21   checkPhase = ''
22     touch .gitignore
23     ${python.interpreter} run_tests.py -u
24   '';
26   meta = with lib; {
27     description = "Controller library that allows applications to interact with Tor";
28     homepage = "https://github.com/onionshare/cepa";
29     license = licenses.lgpl3Only;
30     maintainers = with maintainers; [ lourkeur ];
31   };