007f80c1d0
Should eval cleanly, as far as -A tarball tells me. Relevant: issue #2999, issue #739
27 lines
822 B
Nix
27 lines
822 B
Nix
{ stdenv, fetchurl, python, buildPythonPackage, pythonPackages }:
|
|
|
|
buildPythonPackage rec {
|
|
name = "mygpoclient-1.7";
|
|
|
|
src = fetchurl {
|
|
url = "https://thp.io/2010/mygpoclient/${name}.tar.gz";
|
|
sha256 = "6a0b7b1fe2b046875456e14eda3e42430e493bf2251a64481cf4fd1a1e21a80e";
|
|
};
|
|
|
|
buildInputs = [ pythonPackages.nose pythonPackages.minimock ];
|
|
|
|
checkPhase = "make test";
|
|
|
|
meta = {
|
|
description = "A gpodder.net client library";
|
|
longDescription = ''
|
|
The mygpoclient library allows developers to utilize a Pythonic interface
|
|
to the gpodder.net web services.
|
|
'';
|
|
homepage = "https://thp.io/2010/mygpoclient/";
|
|
license = stdenv.lib.licenses.gpl3;
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
|
maintainers = [ stdenv.lib.maintainers.skeidel ];
|
|
};
|
|
}
|