10 buildPythonPackage rec {
11 pname = "mypgoclient";
15 src = fetchFromGitHub {
19 hash = "sha256-McHllitWiBiCdNuJlUg6K/vgr2l3ychu+KOx3r/UCv0=";
23 substituteInPlace mygpoclient/*_test.py \
24 --replace-quiet "assertEquals" "assertEqual" \
25 --replace-quiet "assert_" "assertTrue"
28 build-system = [ setuptools ];
30 pythonImportsCheck = [ "mygpoclient" ];
37 __darwinAllowLocalNetworking = true;
40 description = "Gpodder.net client library";
42 The mygpoclient library allows developers to utilize a Pythonic interface
43 to the gpodder.net web services.
45 homepage = "https://github.com/gpodder/mygpoclient";
46 license = with licenses; [ gpl3 ];